mirror of
https://github.com/yairm210/Unciv.git
synced 2025-09-24 03:53:12 -04:00
Fixed Air Sweep mechanic
This commit is contained in:
parent
65d81245d2
commit
6c708d537f
@ -90,7 +90,7 @@ enum class UnitActionType(
|
||||
Paradrop("Paradrop",
|
||||
{ ImageGetter.getImage("UnitActionIcons/Paradrop") }, 'p', false),
|
||||
AirSweep("Air Sweep",
|
||||
{ ImageGetter.getImage("UnitActionIcons/AirSweep") }, 'a'),
|
||||
{ ImageGetter.getImage("UnitActionIcons/AirSweep") }, 'a', false),
|
||||
SetUp("Set up",
|
||||
{ ImageGetter.getImage("UnitActionIcons/SetUp") }, 't', false, UncivSound.Setup),
|
||||
FoundCity("Found city",
|
||||
|
@ -53,7 +53,7 @@ class LoadGameScreen(previousScreen:BaseScreen) : LoadOrSaveScreen() {
|
||||
errorText.appendLine()
|
||||
when (ex) {
|
||||
is UncivShowableException -> {
|
||||
errorText.append("${ex.localizedMessage}")
|
||||
errorText.append(ex.localizedMessage)
|
||||
isUserFixable = true
|
||||
}
|
||||
is SerializationException -> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user