From 1667dd812e669ed474fcab378a3be16d0f5b33ac Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 21 Nov 2015 21:29:31 +0000 Subject: [PATCH] Fix a NRE when destroying SAM Sites in GDI06. --- 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 5b3666f324..cd54eed693 100644 --- a/OpenRA.Mods.Common/Traits/Turreted.cs +++ b/OpenRA.Mods.Common/Traits/Turreted.cs @@ -146,7 +146,7 @@ namespace OpenRA.Mods.Common.Traits init.Add(facings); } - facings.Value(self.World).Add(Name, facing.Facing); + facings.Value(self.World).Add(Name, TurretFacing); } }