If used together with https://mods.factorio.com/mod/EditorExtensions
'Faster Robots' will slow down EE's super-robots (their speed is 1000000)...
Proposal for a fix (what I did as a patch):
data-final-fixes.lua | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/data-final-fixes.lua b/data-final-fixes.lua
index 9cbbcdf..858bde1 100644
--- a/data-final-fixes.lua
+++ b/data-final-fixes.lua
@@ -3,7 +3,7 @@ local speed = settings.startup["faster-robots-speed"].value
for , bot in pairs(data.raw["logistic-robot"]) do
if type(bot.max_speed) == "number" and speed > bot.max_speed then
bot.speed = bot.max_speed
- else
+ elseif speed > bot.speed then
bot.speed = speed
end
end
@@ -11,7 +11,7 @@ end
for , bot in pairs(data.raw["construction-robot"]) do
if type(bot.max_speed) == "number" and speed > bot.max_speed then
bot.speed = bot.max_speed
- else
+ elseif speed > bot.speed then
bot.speed = speed
end
end