From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Sun, 28 Jul 2024 06:17:06 +0000 (-0700) Subject: Make NoSlip component networked (#30425) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=1d55a439ff3d45a3430d1db8aa75dc9c6bc0f7fd;p=space-station-14.git Make NoSlip component networked (#30425) Co-authored-by: plykiya --- 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 - { - } + }