v1.2.0: fixed hero moving from left stick when they should be blocked

This commit is contained in:
Evan Debenham 2022-02-20 19:52:29 -05:00
parent e853413649
commit 6b52643082

View File

@ -335,6 +335,10 @@ public class CellSelector extends ScrollArea {
public void update() {
super.update();
if (GameScene.interfaceBlockingHero()){
return;
}
GameAction newLeftStick = actionFromStick(ControllerHandler.leftStickPosition.x,
ControllerHandler.leftStickPosition.y);