Update "os map delete" help/feedback text to "os delete"

This commit is contained in:
Goodlyay 2024-05-13 15:17:30 -07:00
parent be88b30cd5
commit a5f3f80471

View File

@ -96,11 +96,11 @@ namespace MCGalaxy.Commands.World {
} }
static string[] deleteHelp = new string[] { static string[] deleteHelp = new string[] {
"&T/os map delete &H- Deletes your map.", "&T/os delete &H- Deletes your map.",
}; };
static void HandleDelete(Player p, string message) { static void HandleDelete(Player p, string message) {
if (message.Length > 0) { if (message.Length > 0) {
p.Message("To delete your current map, type &T/{0} map delete", commandShortcut); p.Message("To delete your current map, type &T/{0} delete", commandShortcut);
return; return;
} }
UseCommand(p, "DeleteLvl", p.level.name); UseCommand(p, "DeleteLvl", p.level.name);