1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-11-27 22:38:18 +02:00

Update robot_limits.lua

Double the default roboport limit since servers are good enough to handle this.
This commit is contained in:
BraveCaperCat2
2025-04-04 16:11:07 +01:00
committed by GitHub
parent 9f48f12b6a
commit b8b4be6670

View File

@@ -7,7 +7,7 @@ local Module = {}
local settings = {
enabled = true,
registered_forces = {},
roboport_limit = 50,
roboport_limit = 100,
logi_robot_limit = 500,
cons_robot_limit = 500,
damage_amount = 10
@@ -157,4 +157,4 @@ end
Event.on_init(on_init)
Event.on_nth_tick(60, do_tick)
return Module
return Module