From 1d55a439ff3d45a3430d1db8aa75dc9c6bc0f7fd Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sat, 27 Jul 2024 23:17:06 -0700 Subject: [PATCH] Make NoSlip component networked (#30425) Co-authored-by: plykiya --- Content.Shared/Slippery/NoSlipComponent.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Content.Shared/Slippery/NoSlipComponent.cs b/Content.Shared/Slippery/NoSlipComponent.cs index 186861a5a9..d9c3fe3f76 100644 --- a/Content.Shared/Slippery/NoSlipComponent.cs +++ b/Content.Shared/Slippery/NoSlipComponent.cs @@ -1,7 +1,9 @@ -namespace Content.Shared.Slippery +using Robust.Shared.GameStates; + +namespace Content.Shared.Slippery; + +[RegisterComponent, NetworkedComponent] +public sealed partial class NoSlipComponent : Component { - [RegisterComponent] - public sealed partial class NoSlipComponent : Component - { - } + }