v0.9.0: fixed blazing champions igniting tiles for longer than intended
This commit is contained in:
parent
08a2fd694f
commit
1b72d7fff3
|
@ -121,7 +121,7 @@ public abstract class ChampionEnemy extends Buff {
|
||||||
public void detach() {
|
public void detach() {
|
||||||
for (int i : PathFinder.NEIGHBOURS9){
|
for (int i : PathFinder.NEIGHBOURS9){
|
||||||
if (!Dungeon.level.solid[target.pos+i]){
|
if (!Dungeon.level.solid[target.pos+i]){
|
||||||
GameScene.add(Blob.seed(target.pos+i, 8, Fire.class));
|
GameScene.add(Blob.seed(target.pos+i, 2, Fire.class));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
super.detach();
|
super.detach();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user