Faster Robots

by FMR

Improves base speed of both, logistic and construction, robots.

Tweaks
2 days ago
1.1 - 2.1
30.3K
Logistic network

b Breaks EditorExtensions

2 days ago

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

2 days ago
(updated 2 days ago)

Hi chexx, thanks for the proposal.
The latest versions are already fixed.

2 days ago

You're welcome and thanks for the fast response/update

This thread has been locked.