1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2024-12-26 22:56:43 +02:00

Mtn: fix weird bug

This commit is contained in:
Gerkiz 2024-10-30 18:54:04 +01:00
parent 26f45826aa
commit 474347231a

View File

@ -267,13 +267,15 @@ local function equal_fluid(source_tank, target_tank)
amount = source_fluid.amount * 0.5
end
if amount <= 0 then
if amount <= 1 then
return
end
local inserted_amount = target_tank.insert_fluid({ name = source_fluid.name, amount = amount, temperature = source_fluid.temperature })
if inserted_amount > 0 then
source_tank.remove_fluid({ name = source_fluid.name, amount = inserted_amount })
if amount > 0 then
local inserted_amount = target_tank.insert_fluid({ name = source_fluid.name, amount = amount, temperature = source_fluid.temperature })
if inserted_amount > 0 then
source_tank.remove_fluid({ name = source_fluid.name, amount = inserted_amount })
end
end
end