diff --git a/scenarios/bnw/control.lua b/scenarios/bnw/control.lua index 3d44d96..bbf9e50 100644 --- a/scenarios/bnw/control.lua +++ b/scenarios/bnw/control.lua @@ -152,6 +152,9 @@ function itemCountAllowed(name, count, player) elseif string.match(name, ".*module.*") then -- allow modules return count + elseif name == "mining-drone" or name == "transport-drone" then + -- allow up to 200 drones, as they need to be hand-inserted to set request amount. + return math.min(200,count) end return 0 end