From d345316db8d7c6e35268aaf4252a08a5c6718c46 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Tue, 26 Sep 2017 21:58:45 +0200 Subject: [PATCH] Make NetID use 1000+ range --- Content.Shared/GameObjects/Components/NetIDs.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/GameObjects/Components/NetIDs.cs b/Content.Shared/GameObjects/Components/NetIDs.cs index da323846c2..fe77227233 100644 --- a/Content.Shared/GameObjects/Components/NetIDs.cs +++ b/Content.Shared/GameObjects/Components/NetIDs.cs @@ -2,6 +2,6 @@ namespace Content.Shared.GameObjects { public static class ContentNetIDs { - public const uint HANDS = 0; + public const uint HANDS = 1000; } }