From 0eda518bf9926fcb238fefab11f9583adc8b8877 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Mon, 17 Apr 2023 13:50:44 +0300 Subject: [PATCH] Whoops a movement change got in when it shouldn't have --- core/src/com/unciv/ui/screens/worldscreen/WorldMapHolder.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/ui/screens/worldscreen/WorldMapHolder.kt b/core/src/com/unciv/ui/screens/worldscreen/WorldMapHolder.kt index c90fc711d7..6743f89975 100644 --- a/core/src/com/unciv/ui/screens/worldscreen/WorldMapHolder.kt +++ b/core/src/com/unciv/ui/screens/worldscreen/WorldMapHolder.kt @@ -653,7 +653,7 @@ class WorldMapHolder( if (unit.movement.canMoveTo(tile) || unit.movement.isUnknownTileWeShouldAssumeToBePassable(tile) && !unit.baseUnit.movesLikeAirUnits()) { val alpha = if (UncivGame.Current.settings.singleTapMove || isAirUnit) 0.7f else 0.3f - group.layerMisc.overlayTerrain(moveTileOverlayColor) + group.layerOverlay.showHighlight(moveTileOverlayColor, alpha) } }