From 6d49bd39be8f2878fab76a8278ba3a92047eed57 Mon Sep 17 00:00:00 2001 From: way-zer Date: Mon, 4 Oct 2021 21:21:02 +0800 Subject: [PATCH] Fix #5702 (#6098) --- core/src/mindustry/entities/comp/PuddleComp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/comp/PuddleComp.java b/core/src/mindustry/entities/comp/PuddleComp.java index c14c49a826..09fc49dfe9 100644 --- a/core/src/mindustry/entities/comp/PuddleComp.java +++ b/core/src/mindustry/entities/comp/PuddleComp.java @@ -60,7 +60,7 @@ abstract class PuddleComp implements Posc, Puddlec, Drawc{ accepting = 0f; if(amount >= maxLiquid / 1.5f){ - float deposited = Math.min((amount - maxLiquid / 1.5f) / 4f, 0.3f) * Time.delta; + float deposited = Math.min((amount - maxLiquid / 1.5f) / 4f, 0.3f * Time.delta); int targets = 0; for(Point2 point : Geometry.d4){ Tile other = world.tile(tile.x + point.x, tile.y + point.y);