diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java index 585ba6f3f..06eaa2322 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/Dungeon.java @@ -787,7 +787,7 @@ public class Dungeon { } if (chars && Char.hasProp(ch, Char.Property.LARGE)){ - BArray.and( pass, Dungeon.level.openSpace, passable ); + BArray.and( passable, Dungeon.level.openSpace, passable ); } if (chars) { @@ -816,7 +816,7 @@ public class Dungeon { } if (Char.hasProp(ch, Char.Property.LARGE)){ - BArray.and( pass, Dungeon.level.openSpace, passable ); + BArray.and( passable, Dungeon.level.openSpace, passable ); } if (chars){ @@ -841,7 +841,7 @@ public class Dungeon { } if (Char.hasProp(ch, Char.Property.LARGE)){ - BArray.and( pass, Dungeon.level.openSpace, passable ); + BArray.and( passable, Dungeon.level.openSpace, passable ); } if (chars) {