diff --git a/android/assets/jsons/Units.json b/android/assets/jsons/Units.json index bb7f684918..2372dcd5fa 100644 --- a/android/assets/jsons/Units.json +++ b/android/assets/jsons/Units.json @@ -856,6 +856,7 @@ "unitType": "WaterAircraftCarrier", "movement": 5, "strength": 40, + "rangedStrength": 40, "cost": 375, "requiredTech": "Electronics", "uniques": ["Can carry 2 aircraft"], diff --git a/core/src/com/unciv/models/ruleset/unit/UnitType.kt b/core/src/com/unciv/models/ruleset/unit/UnitType.kt index 0db759f031..d7787ae012 100644 --- a/core/src/com/unciv/models/ruleset/unit/UnitType.kt +++ b/core/src/com/unciv/models/ruleset/unit/UnitType.kt @@ -32,6 +32,7 @@ enum class UnitType{ || this == Siege || this == WaterRanged || this == WaterSubmarine + || this == WaterAircraftCarrier || this == City || this.isAirUnit()