From 615f63e13bb03f14befba9866169d9e4958cf28e Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sat, 2 Aug 2025 22:20:17 +0200 Subject: [PATCH] Fix horizontal space men in replays (#39338) * Fix horizontal space men in replays Visualizer should not bail if data unavailable. * Update Content.Client/Rotation/RotationVisualizerSystem.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> --- Content.Client/Rotation/RotationVisualizerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/Rotation/RotationVisualizerSystem.cs b/Content.Client/Rotation/RotationVisualizerSystem.cs index 8dbcf97320..b5be4d0b17 100644 --- a/Content.Client/Rotation/RotationVisualizerSystem.cs +++ b/Content.Client/Rotation/RotationVisualizerSystem.cs @@ -24,7 +24,7 @@ public sealed class RotationVisualizerSystem : SharedRotationVisualsSystem return; if (!_appearance.TryGetData(uid, RotationVisuals.RotationState, out var state, args.Component)) - return; + state = RotationState.Vertical; switch (state) {