#AIRWING - Check if STORAGE object has NO warehouse!

This commit is contained in:
Applevangelist
2025-12-29 18:08:53 +01:00
parent b94f36dfdf
commit a3d7b4eba9
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -340,7 +340,7 @@ function AIRWING:AddSquadron(Squadron)
local NAssets = Squadron.Ngroups * Nunits
local storage = STORAGE:New(airbasename)
--self:T(self.lid.."Adding "..typename.." #"..NAssets)
if storage and storage:IsLimitedAircraft() and typename ~= "none" then
if storage and storage.warehouse and storage:IsLimitedAircraft() and typename ~= "none" then
local NInStore = storage:GetItemAmount(typename) or 0
if NAssets > NInStore then
storage:AddItem(typename,NAssets)