From e53a1d04725c56ab5d3cbe9402431c8d87562bcb Mon Sep 17 00:00:00 2001 From: Leonwang4234 <62972692+Leonwang4234@users.noreply.github.com> Date: Fri, 2 Oct 2020 19:47:47 -0700 Subject: [PATCH] Update BulletType.java --- core/src/mindustry/entities/bullet/BulletType.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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); }); } }