mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2026-08-18 13:16:03 +00:00
Ops
This commit is contained in:
@@ -576,7 +576,7 @@ function AIRBASE:GetParkingSpotsNumber(termtype)
|
||||
local parkingdata=self:GetParkingData(false)
|
||||
|
||||
local nspots=0
|
||||
for _,parkingspot in pairs(self.parking) do
|
||||
for _,parkingspot in pairs(parkingdata) do --self.parking) do
|
||||
if AIRBASE._CheckTerminalType(parkingspot.Term_Type, termtype) then
|
||||
nspots=nspots+1
|
||||
end
|
||||
|
||||
@@ -1559,7 +1559,7 @@ function CONTROLLABLE:EnRouteTaskAWACS( )
|
||||
|
||||
local DCSTask = {
|
||||
id = 'AWACS',
|
||||
params = {}
|
||||
params = {},
|
||||
}
|
||||
|
||||
return DCSTask
|
||||
@@ -1573,7 +1573,7 @@ function CONTROLLABLE:EnRouteTaskTanker( )
|
||||
|
||||
local DCSTask = {
|
||||
id = 'Tanker',
|
||||
params = {}
|
||||
params = {},
|
||||
}
|
||||
|
||||
return DCSTask
|
||||
@@ -1589,7 +1589,7 @@ function CONTROLLABLE:EnRouteTaskEWR( )
|
||||
|
||||
local DCSTask = {
|
||||
id = 'EWR',
|
||||
params = {}
|
||||
params = {},
|
||||
}
|
||||
|
||||
return DCSTask
|
||||
|
||||
Reference in New Issue
Block a user