diff --git a/Commands/MiscCommands.cs b/Commands/MiscCommands.cs index f705e24..3a55d6d 100644 --- a/Commands/MiscCommands.cs +++ b/Commands/MiscCommands.cs @@ -74,9 +74,9 @@ public static void KitMe(ChatCommandContext ctx) ulong steamId = ctx.Event.User.PlatformId; - if (PlayerUtilities.GetPlayerBool(steamId, "Kit")) // if true give kit, if not no + if (!PlayerUtilities.GetPlayerBool(steamId, "Kit")) // if true give kit, if not no { - PlayerUtilities.SetPlayerBool(steamId, "Kit", false); + PlayerUtilities.SetPlayerBool(steamId, "Kit", true); Entity character = ctx.Event.SenderCharacterEntity; foreach (var item in KitPrefabs) diff --git a/Patches/ServerBootstrapSystemPatches.cs b/Patches/ServerBootstrapSystemPatches.cs index 2b7ecab..9d62e58 100644 --- a/Patches/ServerBootstrapSystemPatches.cs +++ b/Patches/ServerBootstrapSystemPatches.cs @@ -60,7 +60,7 @@ internal static class ServerBootstrapSystemPatches { "Grouping", false }, { "Emotes", false }, { "Binding", false }, - { "Kit", true }, + { "Kit", false }, { "VBloodEmotes", true }, { "FamiliarVisual", true}, { "ShinyChoice", false },