diff --git a/forge-gui-mobile/src/forge/screens/planarconquest/CommandCenterScreen.java b/forge-gui-mobile/src/forge/screens/planarconquest/CommandCenterScreen.java index b98052ecbe0..bd0bfdd835e 100644 --- a/forge-gui-mobile/src/forge/screens/planarconquest/CommandCenterScreen.java +++ b/forge-gui-mobile/src/forge/screens/planarconquest/CommandCenterScreen.java @@ -267,6 +267,13 @@ public class CommandCenterScreen extends FScreen implements IVCommandCenter { if (model.setCurrentRegion(commander.getDeployedRegion())) { regionDisplay.onRegionChanged(); } + else if (commander.getCurrentDayAction() != ConquestAction.Undeploy) { + //if already on commander's region, change action to undeploy + commander.setCurrentDayAction(ConquestAction.Undeploy); + } + else { + commander.setCurrentDayAction(null); + } } } else if (model.getCurrentPlaneData().getWins() >= panel.getWinsToUnlock()) {