@jtff/miztemplate-lib 3.4.1 → 3.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lua/src/130-airboss.lua +10 -9
- package/package.json +1 -1
package/lua/src/130-airboss.lua
CHANGED
|
@@ -1117,11 +1117,11 @@ for index, airbossconfig in ipairs(AirBossConfig) do
|
|
|
1117
1117
|
airbossconfig.carriername
|
|
1118
1118
|
}
|
|
1119
1119
|
)
|
|
1120
|
-
if (
|
|
1121
|
-
objAirboss.
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1120
|
+
if (
|
|
1121
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.ROOSEVELT) or
|
|
1122
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.LINCOLN) or
|
|
1123
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.WASHINGTON) or
|
|
1124
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.TRUMAN)
|
|
1125
1125
|
) then
|
|
1126
1126
|
objAirboss.deckLayoutmenuObject = MENU_COALITION:New(
|
|
1127
1127
|
airbossconfig.coalition,
|
|
@@ -1311,10 +1311,11 @@ for index, airbossconfig in ipairs(AirBossConfig) do
|
|
|
1311
1311
|
)
|
|
1312
1312
|
end
|
|
1313
1313
|
objAirboss.customconfig = airbossconfig
|
|
1314
|
-
if (
|
|
1315
|
-
objAirboss.
|
|
1316
|
-
|
|
1317
|
-
|
|
1314
|
+
if (
|
|
1315
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.LINCOLN) or
|
|
1316
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.ROOSEVELT) or
|
|
1317
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.TRUMAN) or
|
|
1318
|
+
(objAirboss.CarrierType == AIRBOSS.CarrierType.WASHINGTON)
|
|
1318
1319
|
) then
|
|
1319
1320
|
flexDeck7SpawnLayout(objAirboss)
|
|
1320
1321
|
end
|