fixes weird occlusion of constructed walls (#3404)

This commit is contained in:
tmtmtl30
2021-02-25 02:52:26 -08:00
committed by GitHub
parent effafac63b
commit 233a4cb51f

View File

@@ -1,4 +1,4 @@
#nullable enable #nullable enable
using System.Threading.Tasks; using System.Threading.Tasks;
using Content.Server.Utility; using Content.Server.Utility;
using Content.Shared.Construction; using Content.Shared.Construction;
@@ -28,7 +28,7 @@ namespace Content.Server.Construction.Completions
entity.SnapToGrid(Offset); entity.SnapToGrid(Offset);
if (SouthRotation) if (SouthRotation)
{ {
entity.Transform.LocalRotation = Angle.South; entity.Transform.LocalRotation = Angle.Zero;
} }
} }
} }