From b22cfa0c740f95f152c19a085cd5fcac21988b33 Mon Sep 17 00:00:00 2001 From: Cryofluid <99197260+Cry0flu1d@users.noreply.github.com> Date: Thu, 12 Feb 2026 08:31:45 +0800 Subject: [PATCH] Update BulletType.java (#11656) --- core/src/mindustry/entities/bullet/BulletType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/bullet/BulletType.java b/core/src/mindustry/entities/bullet/BulletType.java index c43fab76d9..9262cde7b6 100644 --- a/core/src/mindustry/entities/bullet/BulletType.java +++ b/core/src/mindustry/entities/bullet/BulletType.java @@ -539,7 +539,7 @@ public class BulletType extends Content implements Cloneable{ } public void hit(Bullet b, float x, float y){ - hit(b, b.x, b.y, true); + hit(b, x, y, true); } public void hit(Bullet b, float x, float y, boolean createFrags){