Skip to content

Commit

Permalink
Fixed an incorrectly configured storage value for basic nanolathes
Browse files Browse the repository at this point in the history
Instead of 10, it should provide 15.
  • Loading branch information
Arch-Shaman committed Jan 18, 2025
1 parent 2233991 commit 141bdc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LuaRules/Configs/dynamic_comm_defs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2359,7 +2359,7 @@ local moduleDefs = {
{
name = "module_basic_nano",
humanName = "Basic Nanolathe",
description = "Increases build power by 1.5. Increases storage by 10.",
description = "Increases build power by 1.5. Increases storage by 15.",
image = moduleImagePath .. "module_adv_nano.png",
-- unlimited
cost = 100 * COST_MULT,
Expand All @@ -2369,7 +2369,7 @@ local moduleDefs = {
effectPriority = 4,
applicationFunction = function (modules, sharedData)
sharedData.bonusBuildPower = (sharedData.bonusBuildPower or 0) + 1.5
sharedData.extrastorage = (sharedData.extrastorage or 0) + 10
sharedData.extrastorage = (sharedData.extrastorage or 0) + 15
end
},
{
Expand Down

0 comments on commit 141bdc1

Please sign in to comment.