]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Make NoSlip component networked (#30425)
authorPlykiya <58439124+Plykiya@users.noreply.github.com>
Sun, 28 Jul 2024 06:17:06 +0000 (23:17 -0700)
committerGitHub <noreply@github.com>
Sun, 28 Jul 2024 06:17:06 +0000 (23:17 -0700)
Co-authored-by: plykiya <plykiya@protonmail.com>
Content.Shared/Slippery/NoSlipComponent.cs

index 186861a5a93bfd109673146f6e30fcee46d28a67..d9c3fe3f7611072f15d9d06eee87fabb4b357d9f 100644 (file)
@@ -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
-    {
-    }
+
 }