From: Pieter-Jan Briers Date: Sat, 2 Aug 2025 20:20:17 +0000 (+0200) Subject: Fix horizontal space men in replays (#39338) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=615f63e13bb03f14befba9866169d9e4958cf28e;p=space-station-14.git 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> --- 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) {