This commit is contained in:
Frank
2020-03-16 16:44:23 +01:00
parent 3bc387c1c7
commit b9fc1df2e4
6 changed files with 183 additions and 72 deletions
+1 -1
View File
@@ -576,7 +576,7 @@ function AIRBASE:GetParkingSpotsNumber(termtype)
local parkingdata=self:GetParkingData(false)
local nspots=0
for _,parkingspot in pairs(parkingdata) do
for _,parkingspot in pairs(self.parking) do
if AIRBASE._CheckTerminalType(parkingspot.Term_Type, termtype) then
nspots=nspots+1
end