From 0a168b26f00f95ba9ad7580800ed50a82419c6a1 Mon Sep 17 00:00:00 2001 From: reaperrr Date: Fri, 4 Mar 2016 15:13:21 +0100 Subject: [PATCH] Fix InitialFacing of turrets to match Mobile --- OpenRA.Mods.Common/Traits/Turreted.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/Turreted.cs b/OpenRA.Mods.Common/Traits/Turreted.cs index 0fe09fc89f..ab477a653b 100644 --- a/OpenRA.Mods.Common/Traits/Turreted.cs +++ b/OpenRA.Mods.Common/Traits/Turreted.cs @@ -20,7 +20,7 @@ namespace OpenRA.Mods.Common.Traits public readonly string Turret = "primary"; [Desc("Speed at which the turret turns.")] public readonly int TurnSpeed = 255; - public readonly int InitialFacing = 128; + public readonly int InitialFacing = 0; [Desc("Number of ticks before turret is realigned. (-1 turns off realignment)")] public readonly int RealignDelay = 40;