From 1d020872ecc274948fb659138abcb786f397eea2 Mon Sep 17 00:00:00 2001 From: reaperrr Date: Thu, 19 Nov 2015 15:02:19 +0100 Subject: [PATCH] Increase the default range of angles that missiles can launch at --- OpenRA.Mods.Common/Effects/Missile.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.Common/Effects/Missile.cs b/OpenRA.Mods.Common/Effects/Missile.cs index 215845041a..32941a8317 100644 --- a/OpenRA.Mods.Common/Effects/Missile.cs +++ b/OpenRA.Mods.Common/Effects/Missile.cs @@ -35,10 +35,10 @@ namespace OpenRA.Mods.Common.Effects public readonly bool Shadow = false; [Desc("Minimum vertical launch angle (pitch).")] - public readonly WAngle MinimumLaunchAngle = WAngle.Zero; + public readonly WAngle MinimumLaunchAngle = new WAngle(-64); [Desc("Maximum vertical launch angle (pitch).")] - public readonly WAngle MaximumLaunchAngle = new WAngle(64); + public readonly WAngle MaximumLaunchAngle = new WAngle(128); [Desc("Minimum launch speed in WDist / tick")] public readonly WDist MinimumLaunchSpeed = new WDist(75);