Merge remote-tracking branch 'origin/master-ng' into develop

This commit is contained in:
Applevangelist
2026-04-08 15:18:20 +02:00
2 changed files with 5 additions and 4 deletions
@@ -1848,7 +1848,7 @@ do -- DETECTION_BASE
return self return self
end end
--- Validate if the detected item is locked. --- Validate if the detected item is locked (not in the radar sense, though!).
-- @param #DETECTION_BASE self -- @param #DETECTION_BASE self
-- @param #DETECTION_BASE.DetectedItem DetectedItem The DetectedItem. -- @param #DETECTION_BASE.DetectedItem DetectedItem The DetectedItem.
-- @return #boolean -- @return #boolean
@@ -1858,7 +1858,7 @@ do -- DETECTION_BASE
end end
--- Lock a detected item. --- Lock a detected item (not in the radar sense, though!).
-- @param #DETECTION_BASE self -- @param #DETECTION_BASE self
-- @param #DETECTION_BASE.DetectedItem DetectedItem The DetectedItem. -- @param #DETECTION_BASE.DetectedItem DetectedItem The DetectedItem.
-- @return #DETECTION_BASE -- @return #DETECTION_BASE
@@ -1869,7 +1869,7 @@ do -- DETECTION_BASE
return self return self
end end
--- Unlock a detected item. --- Unlock a detected item (not in the radar sense, though!).
-- @param #DETECTION_BASE self -- @param #DETECTION_BASE self
-- @param #DETECTION_BASE.DetectedItem DetectedItem The DetectedItem. -- @param #DETECTION_BASE.DetectedItem DetectedItem The DetectedItem.
-- @return #DETECTION_BASE -- @return #DETECTION_BASE
+2 -1
View File
@@ -1835,9 +1835,10 @@ function EASYGCICAP:onafterRestart(From,Event,To)
-- self.wings[Airbasename] = { CAP_Wing, AIRBASE:FindByName(Airbasename):GetZone(), Airbasename } -- self.wings[Airbasename] = { CAP_Wing, AIRBASE:FindByName(Airbasename):GetZone(), Airbasename }
for _,_wing in pairs(self.wings or {}) do for _,_wing in pairs(self.wings or {}) do
for _,_aw in pairs(_wing) do for _,_aw in pairs(_wing) do
_wing[1]:Start() _wing[1]:Restart()
end end
end end
end end
self:__Status(5)
return self return self
end end