From a5f3f80471faba4d8fa72774ecdc85136584dfe8 Mon Sep 17 00:00:00 2001 From: Goodlyay Date: Mon, 13 May 2024 15:17:30 -0700 Subject: [PATCH] Update "os map delete" help/feedback text to "os delete" --- MCGalaxy/Commands/Overseer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MCGalaxy/Commands/Overseer.cs b/MCGalaxy/Commands/Overseer.cs index 5ee38eb0d..ab455b4de 100644 --- a/MCGalaxy/Commands/Overseer.cs +++ b/MCGalaxy/Commands/Overseer.cs @@ -96,11 +96,11 @@ namespace MCGalaxy.Commands.World { } 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) { 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; } UseCommand(p, "DeleteLvl", p.level.name);