From 4aa801f504c0d6044202c2c10c77e31a1c2780de Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 7 Jul 2025 12:59:03 -0400 Subject: [PATCH] Fixed #10998 --- .../mindustry/world/blocks/defense/turrets/LiquidTurret.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/defense/turrets/LiquidTurret.java b/core/src/mindustry/world/blocks/defense/turrets/LiquidTurret.java index 82a9cf6d9e..c4e0cc0127 100644 --- a/core/src/mindustry/world/blocks/defense/turrets/LiquidTurret.java +++ b/core/src/mindustry/world/blocks/defense/turrets/LiquidTurret.java @@ -94,7 +94,7 @@ public class LiquidTurret extends Turret{ var fire = Fires.get(x + tx, y + ty); float dst = fire == null ? 0 : dst2(fire); //do not extinguish fires on other team blocks - if(other != null && fire != null && Fires.has(other.x, other.y) && dst <= range * range && (result == null || dst < mindst) && (other.build == null || other.team() == team)){ + if(other != null && fire != null && other.build != this && Fires.has(other.x, other.y) && dst <= range * range && (result == null || dst < mindst) && (other.build == null || other.team() == team)){ result = fire; mindst = dst; }