From 3fab0c11f61711646283ca81d668e62f41786787 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 4 Mar 2017 21:27:45 +1100 Subject: [PATCH] now /realm map remove is alias for delete (Thanks Tree) --- MCGalaxy/Commands/CmdOverseer.SubCommands.cs | 2 +- MCGalaxy/Player/Player.Login.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/MCGalaxy/Commands/CmdOverseer.SubCommands.cs b/MCGalaxy/Commands/CmdOverseer.SubCommands.cs index 0252fb8f5..e03f26fee 100644 --- a/MCGalaxy/Commands/CmdOverseer.SubCommands.cs +++ b/MCGalaxy/Commands/CmdOverseer.SubCommands.cs @@ -94,7 +94,7 @@ namespace MCGalaxy.Commands { } else { Player.Message(p, "Accepted numbers are: 0, 1, 2, 3, 4 or 5"); } - } else if (cmd == "DELETE") { + } else if (cmd == "DELETE" || cmd == "REMOVE") { DeleteMap(p, value); } else if (cmd == "SAVE") { Command.all.Find("save").Use(p, ""); diff --git a/MCGalaxy/Player/Player.Login.cs b/MCGalaxy/Player/Player.Login.cs index 071cdc373..276d9da9e 100644 --- a/MCGalaxy/Player/Player.Login.cs +++ b/MCGalaxy/Player/Player.Login.cs @@ -107,7 +107,6 @@ namespace MCGalaxy { InitPlayerStats(playerDb); } else { LoadPlayerStats(playerDb); - //save(); // update IP and total logins in the DB } Server.Background.QueueOnce(ShowAltsTask, name, TimeSpan.Zero);