caught a small unintended "feature" (typo) in the Data-final-fixes.lua
if data.raw["construction-robot"]["construction-robot-nuclear"] then
data.raw["construction-robot"]["construction-robot-nuclear"].speed = 1.5 * new_base_speed
end
if data.raw["logistic-robot"]["logistic-robot-nuclear"] then
data.raw["construction-robot"]["construction-robot-nuclear"].speed = new_base_speed -- <-( here )
end
I think its supposed to say;
if data.raw["logistic-robot"]["logistic-robot-nuclear"] then
data.raw["logistic-robot"]["logistic-robot-nuclear"].speed = 1.5 * new_base_speed
end
,otherwise its just setting the Nuclear Construction bot to the base speed after increasing it.
^_^