]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
unbreak StandingStateSystem
authorErrant <35878406+Errant-4@users.noreply.github.com>
Sun, 17 Aug 2025 21:23:37 +0000 (23:23 +0200)
committerErrant <35878406+Errant-4@users.noreply.github.com>
Sun, 17 Aug 2025 21:23:37 +0000 (23:23 +0200)
Content.Shared/Standing/StandingStateSystem.cs

index 5553ef5b91a81dbd9c25147ddaa6219bfaaa58dc..7f3b8c9aacc0b38e6783c3d9dc22ae3d3fa25150 100644 (file)
@@ -69,15 +69,6 @@ public sealed class StandingStateSystem : EntitySystem
         ChangeLayers(entity);
     }
 
-    private void OnEndClimb(Entity<StandingStateComponent> entity, ref EndClimbEvent args)
-    {
-        if (entity.Comp.Standing)
-            return;
-
-        // Currently only Climbing also edits fixtures layers like this so this is fine for now.
-        ChangeLayers(entity);
-    }
-
     public bool IsDown(EntityUid uid, StandingStateComponent? standingState = null)
     {
         if (!Resolve(uid, ref standingState, false))