Update BulletType.java

This commit is contained in:
Leonwang4234
2020-10-02 19:47:47 -07:00
parent 74c0d0d0fd
commit e53a1d0472

View File

@@ -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);
});
}
}