No, i'm just playing =)
I researched a bit and found issue was caused by mod tanks_for_bob_1.5.2.zip, there are energy defined as string, not number:
energy_required = "5",
So UPS-up fails with numerical comparison in data-final-fixes.lua at line 85. It can be fixed with casting energy_required to number:
if UPS_CONFIG.SAVE_UPS_ASSEMBLING_MACHINE and not UPS_CONFIG.UNINSTALL then
for key, recipe in pairs(data.raw["recipe"]) do
if recipe.energy_required then
local energy=recipe.energy_required + 0
if energy > 10 then
elseif energy > 5 then
recipe.overload_multiplier = 5
elseif energy > 2 then
recipe.overload_multiplier = 10
elseif energy > 0.4 then
recipe.overload_multiplier = 30
else
recipe.overload_multiplier = 50
end
else
recipe.overload_multiplier = 30
end
end
data.raw["recipe"]["rocket-silo"].overload_multiplier = 1
data.raw["recipe"]["satellite"].overload_multiplier = 1
end