From 777a75b7a37b0ba3648f761573bdba5d1c067bfa Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Sun, 28 Feb 2021 20:20:56 +1100 Subject: [PATCH] Fix construction smoothing (#3446) Co-authored-by: Metal Gear Sloth --- Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs b/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs index 3ff13e97ab..ea9fdd6260 100644 --- a/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs @@ -446,7 +446,7 @@ namespace Content.Server.GameObjects.EntitySystems } structure.Transform.Coordinates = ev.Location; - structure.Transform.LocalRotation = constructionPrototype.CanRotate ? ev.Angle : Angle.South; + structure.Transform.LocalRotation = constructionPrototype.CanRotate ? ev.Angle : Angle.Zero; RaiseNetworkEvent(new AckStructureConstructionMessage(ev.Ack));