diff --git a/core/src/mindustry/entities/bullet/BulletType.java b/core/src/mindustry/entities/bullet/BulletType.java index a4d287862e..a828f57232 100644 --- a/core/src/mindustry/entities/bullet/BulletType.java +++ b/core/src/mindustry/entities/bullet/BulletType.java @@ -195,10 +195,7 @@ public abstract class BulletType extends Content{ if(status == StatusEffects.burning) { indexer.eachBlock(null, x, y, splashDamageRadius, other -> other.team != b.team, other -> { - Tile tile = world.tileWorld(other.x, other.y); - if(tile != null){ - Fires.create(tile); - } + Fires.create(other.tile); }); } }