From 1362fe9019e914ad7b2e8698614b90ce33c85946 Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 10 Sep 2023 22:40:05 +0200 Subject: [PATCH 1/2] Update SRS.lua --- Moose Development/Moose/Sound/SRS.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moose Development/Moose/Sound/SRS.lua b/Moose Development/Moose/Sound/SRS.lua index 1679c9bf6..7299dc2b5 100644 --- a/Moose Development/Moose/Sound/SRS.lua +++ b/Moose Development/Moose/Sound/SRS.lua @@ -146,7 +146,7 @@ MSRS = { MSRS.version="0.1.1" --- Voices --- @type Voices +-- @type MSRS.Voices MSRS.Voices = { Microsoft = { ["Hedda"] = "Microsoft Hedda Desktop", -- de-DE From 5aa8338c596362a9a10cdcb947b52d95ca8de2ad Mon Sep 17 00:00:00 2001 From: Frank Date: Wed, 13 Sep 2023 11:10:35 +0200 Subject: [PATCH 2/2] Update Airboss.lua - Adjust into wind angle --- Moose Development/Moose/Ops/Airboss.lua | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Moose Development/Moose/Ops/Airboss.lua b/Moose Development/Moose/Ops/Airboss.lua index 3f7096beb..ef510bcd2 100644 --- a/Moose Development/Moose/Ops/Airboss.lua +++ b/Moose Development/Moose/Ops/Airboss.lua @@ -11592,14 +11592,8 @@ function AIRBOSS:GetHeadingIntoWind( magnetic, coord ) -- Get direction the wind is blowing from. This is where we want to go. local windfrom, vwind = self:GetWind( nil, nil, coord ) - --self:T("windfrom="..windfrom.." vwind="..vwind) - - vwind = vwind + adjustDegreesForWindSpeed(vwind) - - --self:T("windfrom="..windfrom.." (c)vwind="..vwind) - -- Actually, we want the runway in the wind. - local intowind = windfrom - self.carrierparam.rwyangle + local intowind = windfrom - self.carrierparam.rwyangle + adjustDegreesForWindSpeed(vwind) -- If no wind, take current heading. if vwind < 0.1 then