v1.1.1: fixed holding keys to move not working on desktop

This commit is contained in:
Evan Debenham 2021-12-19 20:56:27 -05:00
parent 908ec7424b
commit bce7cc4f22

View File

@ -296,7 +296,8 @@ public class CellSelector extends ScrollArea {
public void processKeyHold(){ public void processKeyHold(){
if (heldAction != SPDAction.NONE){ if (heldAction != SPDAction.NONE){
enabled = true; enabled = Dungeon.hero.ready = true;
Dungeon.observe();
heldTurns++; heldTurns++;
moveFromAction(heldAction); moveFromAction(heldAction);
} }