From 8efcd8cc2b77995a5ac92acc30fdee58a973bd09 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Sun, 6 Feb 2022 15:11:03 +0200 Subject: [PATCH] Exploring and automating workers are some of the most common actions, they don't deserve to be behind a 'get additional actions' click --- core/src/com/unciv/ui/worldscreen/unit/UnitActions.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/com/unciv/ui/worldscreen/unit/UnitActions.kt b/core/src/com/unciv/ui/worldscreen/unit/UnitActions.kt index b0ebf3494b..921bff5aec 100644 --- a/core/src/com/unciv/ui/worldscreen/unit/UnitActions.kt +++ b/core/src/com/unciv/ui/worldscreen/unit/UnitActions.kt @@ -62,6 +62,8 @@ object UnitActions { addEnhanceReligionAction(unit, actionList) actionList += getImprovementConstructionActions(unit, tile) addActionsWithLimitedUses(unit, actionList, tile) + addExplorationActions(unit, actionList) + addAutomateBuildingImprovementsAction(unit, actionList) addToggleActionsAction(unit, actionList, unitTable) @@ -78,8 +80,6 @@ object UnitActions { addFortifyActions(actionList, unit, true) addSwapAction(unit, actionList, worldScreen) - addExplorationActions(unit, actionList) - addAutomateBuildingImprovementsAction(unit, actionList) addDisbandAction(actionList, unit, worldScreen) addGiftAction(unit, actionList, tile)