From 13e81b85bf04d1adf09dc4990fa38ba5d4aad048 Mon Sep 17 00:00:00 2001 From: Anuken Date: Tue, 19 Aug 2025 15:33:25 -0400 Subject: [PATCH] Fixed #11153 --- core/src/mindustry/entities/bullet/PointBulletType.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/bullet/PointBulletType.java b/core/src/mindustry/entities/bullet/PointBulletType.java index ff7504b57a..fbdf375345 100644 --- a/core/src/mindustry/entities/bullet/PointBulletType.java +++ b/core/src/mindustry/entities/bullet/PointBulletType.java @@ -60,7 +60,8 @@ public class PointBulletType extends BulletType{ Building build = Vars.world.buildWorld(px, py); if(build != null && build.team != b.team){ build.collision(b); - hit(b, px, py); + hit(b, px, py); + b.hit = true; } }