From 6f4bcbf933abc95345171d61fe40b2527011d2b1 Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 22 Apr 2025 20:11:15 -0400 Subject: [PATCH] Fixed #10712 --- core/src/mindustry/entities/bullet/BulletType.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/mindustry/entities/bullet/BulletType.java b/core/src/mindustry/entities/bullet/BulletType.java index 24f5059f24..def5b7a9f3 100644 --- a/core/src/mindustry/entities/bullet/BulletType.java +++ b/core/src/mindustry/entities/bullet/BulletType.java @@ -433,6 +433,8 @@ public class BulletType extends Content implements Cloneable{ if(heals() && build.team == b.team && !(build.block instanceof ConstructBlock)){ healEffect.at(build.x, build.y, 0f, healColor, build.block); build.heal(healPercent / 100f * build.maxHealth + healAmount); + + hit(b); }else if(build.team != b.team && direct){ hit(b);