From 973689425c78988ec338e940ca545089d738c4d5 Mon Sep 17 00:00:00 2001 From: Centronias Date: Wed, 27 Aug 2025 07:56:13 -0700 Subject: [PATCH] Fixes Diona rooting not working since event based weightlessness refactor (#39893) * Fixes Diona rooting not working since event based weightlessness refactor Caused by #37971 * pr comments --- Content.Shared/Rootable/SharedRootableSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Rootable/SharedRootableSystem.cs b/Content.Shared/Rootable/SharedRootableSystem.cs index 9165c3c111..d646c7d97c 100644 --- a/Content.Shared/Rootable/SharedRootableSystem.cs +++ b/Content.Shared/Rootable/SharedRootableSystem.cs @@ -104,6 +104,7 @@ public abstract class SharedRootableSystem : EntitySystem entity.Comp.Rooted = !entity.Comp.Rooted; _movementSpeedModifier.RefreshMovementSpeedModifiers(entity); + _gravity.RefreshWeightless(entity.Owner); Dirty(entity); if (entity.Comp.Rooted) @@ -119,7 +120,6 @@ public abstract class SharedRootableSystem : EntitySystem { _alerts.ClearAlert(entity, entity.Comp.RootedAlert); } - _audio.PlayPredicted(entity.Comp.RootSound, entity.Owner.ToCoordinates(), entity); return true; -- 2.51.2