From c38917fa2f60e3946483110470172e78dfa782c6 Mon Sep 17 00:00:00 2001 From: kaltokri Date: Fri, 2 Feb 2024 12:15:40 +0100 Subject: [PATCH] Fix for dead links (case sensitivity) --- Moose Development/Moose/Ops/Auftrag.lua | 6 +++--- Moose Development/Moose/Ops/EasyGCICAP.lua | 2 +- Moose Development/Moose/Ops/FlightGroup.lua | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Moose Development/Moose/Ops/Auftrag.lua b/Moose Development/Moose/Ops/Auftrag.lua index 24d07803e..1ae498766 100644 --- a/Moose Development/Moose/Ops/Auftrag.lua +++ b/Moose Development/Moose/Ops/Auftrag.lua @@ -145,7 +145,7 @@ -- @field #table NassetsLegMax Number of required warehouse assets for each assigned legion. -- @field #table requestID The ID of the queued warehouse request. Necessary to cancel the request if the mission was cancelled before the request is processed. -- @field #table payloads User specified airwing payloads for this mission. Only these will be considered for the job! --- @field Ops.AirWing#AIRWING.PatrolData patroldata Patrol data. +-- @field Ops.Airwing#AIRWING.PatrolData patroldata Patrol data. -- -- @field #table specialLegions User specified legions assigned for this mission. Only these will be considered for the job! -- @field #table specialCohorts User specified cohorts assigned for this mission. Only these will be considered for the job! @@ -338,7 +338,7 @@ -- -- ## Legion Level -- --- Adding an AUFTRAG to an airwing is done via the @{Ops.AirWing#AIRWING.AddMission} function. See AIRWING docs for further details. +-- Adding an AUFTRAG to an airwing is done via the @{Ops.Airwing#AIRWING.AddMission} function. See AIRWING docs for further details. -- Similarly, an AUFTRAG can be added to a brigade via the @{Ops.Brigade#BRIGADE.AddMission} function. -- -- ## Commander Level @@ -3734,7 +3734,7 @@ end --- Add a required payload for this mission. Only these payloads will be used for this mission. If they are not available, the mission cannot start. Only available for use with an AIRWING. -- @param #AUFTRAG self --- @param Ops.AirWing#AIRWING.Payload Payload Required payload. +-- @param Ops.Airwing#AIRWING.Payload Payload Required payload. -- @return #AUFTRAG self function AUFTRAG:AddRequiredPayload(Payload) diff --git a/Moose Development/Moose/Ops/EasyGCICAP.lua b/Moose Development/Moose/Ops/EasyGCICAP.lua index 1cb3385ee..4b923a267 100644 --- a/Moose Development/Moose/Ops/EasyGCICAP.lua +++ b/Moose Development/Moose/Ops/EasyGCICAP.lua @@ -1126,7 +1126,7 @@ end --- Add a zone to the rejected zones set. -- @param #EASYGCICAP self --- @param Ops.Intelligence#INTEL.Cluster Cluster +-- @param Ops.Intel#INTEL.Cluster Cluster -- @return #EASYGCICAP self function EASYGCICAP:_AssignIntercept(Cluster) -- Here, we'll decide if we need to launch an intercepting flight, and from where diff --git a/Moose Development/Moose/Ops/FlightGroup.lua b/Moose Development/Moose/Ops/FlightGroup.lua index 05145caac..6353239bd 100644 --- a/Moose Development/Moose/Ops/FlightGroup.lua +++ b/Moose Development/Moose/Ops/FlightGroup.lua @@ -44,7 +44,7 @@ -- @field #boolean fuelcritical Fuel critical switch. -- @field #number fuelcriticalthresh Critical fuel threshold in percent. -- @field #boolean fuelcriticalrtb RTB on critical fuel switch. --- @field Ops.FlightControl#FLIGHTCONTROL flightcontrol The flightcontrol handling this group. +-- @field OPS.FlightControl#FLIGHTCONTROL flightcontrol The flightcontrol handling this group. -- @field Ops.Airboss#AIRBOSS airboss The airboss handling this group. -- @field Core.UserFlag#USERFLAG flaghold Flag for holding. -- @field #number Tholding Abs. mission time stamp when the group reached the holding point. @@ -54,7 +54,7 @@ -- @field #boolean despawnAfterLanding If `true`, group is despawned after landed at an airbase. -- @field #boolean despawnAfterHolding If `true`, group is despawned after reaching the holding point. -- @field #number RTBRecallCount Number that counts RTB calls. --- @field Ops.FlightControl#FLIGHTCONTROL.HoldingStack stack Holding stack. +-- @field OPS.FlightControl#FLIGHTCONTROL.HoldingStack stack Holding stack. -- @field #boolean isReadyTO Flight is ready for takeoff. This is for FLIGHTCONTROL. -- @field #boolean prohibitAB Disallow (true) or allow (false) AI to use the afterburner. -- @field #boolean jettisonEmptyTanks Allow (true) or disallow (false) AI to jettison empty fuel tanks. @@ -793,7 +793,7 @@ end --- Set the FLIGHTCONTROL controlling this flight group. -- @param #FLIGHTGROUP self --- @param Ops.FlightControl#FLIGHTCONTROL flightcontrol The FLIGHTCONTROL object. +-- @param OPS.FlightControl#FLIGHTCONTROL flightcontrol The FLIGHTCONTROL object. -- @return #FLIGHTGROUP self function FLIGHTGROUP:SetFlightControl(flightcontrol) @@ -822,7 +822,7 @@ end --- Get the FLIGHTCONTROL controlling this flight group. -- @param #FLIGHTGROUP self --- @return Ops.FlightControl#FLIGHTCONTROL The FLIGHTCONTROL object. +-- @return OPS.FlightControl#FLIGHTCONTROL The FLIGHTCONTROL object. function FLIGHTGROUP:GetFlightControl() return self.flightcontrol end @@ -4871,7 +4871,7 @@ function FLIGHTGROUP:_UpdateMenu(delay) -- Get all FLIGHTCONTROLS local fc={} for airbasename,_flightcontrol in pairs(_DATABASE.FLIGHTCONTROLS) do - local flightcontrol=_flightcontrol --Ops.FlightControl#FLIGHTCONTROL + local flightcontrol=_flightcontrol --OPS.FlightControl#FLIGHTCONTROL -- Get coord of airbase. local coord=flightcontrol:GetCoordinate()