diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/CellSelector.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/CellSelector.java index 442ce7822..1411126a7 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/CellSelector.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/CellSelector.java @@ -373,7 +373,9 @@ public class CellSelector extends ScrollArea { if (cell != Dungeon.hero.pos && cell != lastCellMoved){ lastCellMoved = cell; - select(cell, PointerEvent.LEFT); + if (Dungeon.hero.handle( cell )) { + Dungeon.hero.next(); + } return true; } else {