From 04707232ded447a94f6c92ee8543ef6483ea9f2b Mon Sep 17 00:00:00 2001 From: Alex Noir Date: Sat, 9 Dec 2017 19:15:51 +0300 Subject: [PATCH] forgot to remove the console command for karma --- Barotrauma/BarotraumaShared/Source/DebugConsole.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Barotrauma/BarotraumaShared/Source/DebugConsole.cs b/Barotrauma/BarotraumaShared/Source/DebugConsole.cs index 15b2e7ffa..237718d75 100644 --- a/Barotrauma/BarotraumaShared/Source/DebugConsole.cs +++ b/Barotrauma/BarotraumaShared/Source/DebugConsole.cs @@ -419,12 +419,6 @@ namespace Barotrauma }); })); - commands.Add(new Command("togglekarma", "togglekarma: Toggles the karma system.", (string[] args) => - { - if (GameMain.Server == null) return; - GameMain.Server.KarmaEnabled = !GameMain.Server.KarmaEnabled; - })); - commands.Add(new Command("kick", "kick [name]: Kick a player out of the server.", (string[] args) => { if (GameMain.NetworkMember == null || args.Length == 0) return;