From 233a4cb51f9afcfe6cb40529813ea9505fab0c22 Mon Sep 17 00:00:00 2001 From: tmtmtl30 <53132901+tmtmtl30@users.noreply.github.com> Date: Thu, 25 Feb 2021 02:52:26 -0800 Subject: [PATCH] fixes weird occlusion of constructed walls (#3404) --- Content.Server/Construction/Completions/SnapToGrid.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Construction/Completions/SnapToGrid.cs b/Content.Server/Construction/Completions/SnapToGrid.cs index 5f52e30a91..b0a9356769 100644 --- a/Content.Server/Construction/Completions/SnapToGrid.cs +++ b/Content.Server/Construction/Completions/SnapToGrid.cs @@ -1,4 +1,4 @@ -#nullable enable +#nullable enable using System.Threading.Tasks; using Content.Server.Utility; using Content.Shared.Construction; @@ -28,7 +28,7 @@ namespace Content.Server.Construction.Completions entity.SnapToGrid(Offset); if (SouthRotation) { - entity.Transform.LocalRotation = Angle.South; + entity.Transform.LocalRotation = Angle.Zero; } } }