From d1ca70d499dc095f20c719b5cc73e23d8a66f7c3 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Fri, 12 May 2017 15:06:22 +1000 Subject: [PATCH] Doing /os map without args should show help on any map, fixes #286. (Thanks FabTheZen) --- MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs b/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs index c60189591..90ea4ef57 100644 --- a/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs +++ b/MCGalaxy/Commands/World/CmdOverseer.SubCommands.cs @@ -81,7 +81,7 @@ namespace MCGalaxy.Commands.World { static void HandleMap(Player p, string cmd, string value) { cmd = cmd.ToUpper(); - bool mapOnly = !(cmd == "ADD" || cmd == "DELETE"); + bool mapOnly = !(cmd == "ADD" || cmd == "DELETE" || cmd == ""); if (mapOnly && !OwnsMap(p, p.level)) { Player.Message(p, "You may only perform that action on your own map."); return; }