diff --git a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs index 6cd54f798b..23e60fb80d 100644 --- a/OpenRA.Mods.Common/Traits/Air/Aircraft.cs +++ b/OpenRA.Mods.Common/Traits/Air/Aircraft.cs @@ -56,7 +56,7 @@ namespace OpenRA.Mods.Common.Traits [Desc("Turn speed to apply when aircraft flies in circles while idle. Defaults to TurnSpeed if undefined.")] public readonly WAngle? IdleTurnSpeed = null; - [Desc("Maximum flight speed")] + [Desc("Maximum flight speed when cruising.")] public readonly int Speed = 1; [Desc("If non-negative, force the aircraft to move in circles at this speed when idle (a speed of 0 means don't move), ignoring CanHover.")] diff --git a/mods/ts/rules/aircraft.yaml b/mods/ts/rules/aircraft.yaml index f84c04ae41..6991b79b71 100644 --- a/mods/ts/rules/aircraft.yaml +++ b/mods/ts/rules/aircraft.yaml @@ -201,7 +201,9 @@ ORCAB: Aircraft: CruiseAltitude: 5c512 TurnSpeed: 12 + IdleTurnSpeed: 4 Speed: 96 + IdleSpeed: 72 CruisingCondition: cruising TakeoffSounds: orcaup1.aud LandingSounds: orcadwn1.aud @@ -354,8 +356,10 @@ SCRIN: VoiceSet: Scrin Aircraft: CruiseAltitude: 5c0 - TurnSpeed: 12 - Speed: 168 + TurnSpeed: 15 + Speed: 200 + IdleTurnSpeed: 6 + IdleSpeed: 100 TakeoffSounds: dropup1.aud LandingSounds: dropdwn1.aud CanHover: false