Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scenarios/bnw/control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down