diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java index 34b597921..3b86d300f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Wraith.java @@ -95,10 +95,7 @@ public class Wraith extends Mob { public static void spawnAround( int pos ) { for (int n : PathFinder.NEIGHBOURS4) { - int cell = pos + n; - if (Dungeon.level.passable[cell] && Actor.findChar( cell ) == null) { - spawnAt( cell ); - } + spawnAt( pos + n ); } }