Index: binary-improvements2/CommandExtensions/src/Commands/Exception.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/Exception.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/Exception.cs	(revision 405)
@@ -6,5 +6,5 @@
 	[UsedImplicitly]
 	public class ConsoleCmdException : ConsoleCmdAbstract {
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] { "exception" };
 		}
@@ -19,5 +19,5 @@
 		}
 
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "Throw an exception / log messages";
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/Give.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/Give.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/Give.cs	(revision 405)
@@ -6,9 +6,9 @@
 	[UsedImplicitly]
 	public class Give : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "give an item to a player (entity id or name)";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "Give an item to a player by dropping it in front of that player\n" +
 			       "Usage:\n" +
@@ -21,5 +21,5 @@
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"give", string.Empty};
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/ListItems.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/ListItems.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/ListItems.cs	(revision 405)
@@ -6,13 +6,13 @@
 	[UsedImplicitly]
 	public class ListItems : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "lists all items that contain the given substring";
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"listitems", "li"};
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "List all available item names\n" +
 			       "Usage:\n" +
Index: binary-improvements2/CommandExtensions/src/Commands/ListKnownPlayers.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/ListKnownPlayers.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/ListKnownPlayers.cs	(revision 405)
@@ -6,9 +6,9 @@
 	[UsedImplicitly]
 	public class ListKnownPlayers : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "lists all players that were ever online";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "Usage:\n" +
 			       "  1. listknownplayers\n" +
@@ -22,5 +22,5 @@
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"listknownplayers", "lkp"};
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/ListLandProtection.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/ListLandProtection.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/ListLandProtection.cs	(revision 405)
@@ -8,9 +8,9 @@
 	[UsedImplicitly]
 	public class ListLandProtection : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "lists all land protection blocks and owners";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "Usage:\n" +
 			       "  1. listlandprotection summary\n" +
@@ -23,5 +23,5 @@
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"listlandprotection", "llp"};
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/RemoveLandProtection.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/RemoveLandProtection.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/RemoveLandProtection.cs	(revision 405)
@@ -8,9 +8,9 @@
 	[UsedImplicitly]
 	public class RemoveLandProtection : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "removes the association of a land protection block to the owner";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "Usage:" +
 			       "  1. removelandprotection <userid>\n" +
@@ -22,5 +22,5 @@
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"removelandprotection", "rlp"};
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/Reply.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/Reply.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/Reply.cs	(revision 405)
@@ -5,9 +5,9 @@
 	[UsedImplicitly]
 	public class Reply : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "send a message to  the player who last sent you a PM";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "Usage:\n" +
 			       "   reply <message>\n" +
@@ -15,5 +15,5 @@
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"reply", "re"};
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/SayToPlayer.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/SayToPlayer.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/SayToPlayer.cs	(revision 405)
@@ -5,9 +5,9 @@
 	[UsedImplicitly]
 	public class SayToPlayer : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "send a message to a single player";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "Usage:\n" +
 			       "   pm <player name / steam id / entity id> <message>\n" +
@@ -15,5 +15,5 @@
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"sayplayer", "pm"};
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/ShowInventory.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/ShowInventory.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/ShowInventory.cs	(revision 405)
@@ -6,9 +6,9 @@
 	[UsedImplicitly]
 	public class ShowInventory : ConsoleCmdAbstract {
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "list inventory of a given player";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return "Usage:\n" +
 			       "   showinventory <user id / player name / entity id> [tag]\n" +
@@ -21,5 +21,5 @@
 		}
 
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] {"showinventory", "si"};
 		}
Index: binary-improvements2/CommandExtensions/src/Commands/TestLogSpam.cs
===================================================================
--- binary-improvements2/CommandExtensions/src/Commands/TestLogSpam.cs	(revision 404)
+++ binary-improvements2/CommandExtensions/src/Commands/TestLogSpam.cs	(revision 405)
@@ -7,5 +7,5 @@
 	[UsedImplicitly]
 	public class TestLogSpam : ConsoleCmdAbstract {
-		public override string[] GetCommands () {
+		protected override string[] getCommands () {
 			return new[] { "tls" };
 		}
@@ -15,9 +15,9 @@
 		public override bool IsExecuteOnClient => true;
 
-		public override string GetDescription () {
+		protected override string getDescription () {
 			return "Spams the log with until stopped";
 		}
 
-		public override string GetHelp () {
+		protected override string getHelp () {
 			return @"
 			|Usage:
