From bb10a9b266cc040ed4228150238cf3abd16c7107 Mon Sep 17 00:00:00 2001 From: Bob Date: Sun, 7 Feb 2010 01:05:50 +1300 Subject: [PATCH] fix default Turreted.ROT --- OpenRa.Game/Traits/Turreted.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRa.Game/Traits/Turreted.cs b/OpenRa.Game/Traits/Turreted.cs index a1f190951b..2c74d70f65 100644 --- a/OpenRa.Game/Traits/Turreted.cs +++ b/OpenRa.Game/Traits/Turreted.cs @@ -4,7 +4,7 @@ namespace OpenRa.Traits { class TurretedInfo : ITraitInfo { - public readonly int ROT = 0; + public readonly int ROT = 255; public readonly int InitialFacing = 128; public object Create(Actor self) { return new Turreted(self); }