From 8a558f6a29fd941773066059233b733ab034af33 Mon Sep 17 00:00:00 2001 From: JJ <3617814+joligario@users.noreply.github.com> Date: Sat, 21 Oct 2023 13:33:16 -0400 Subject: [PATCH] [Bug Fix] Hotfix command without hotfix name (#3644) If no hotfix name is provided, the hotfix command won't need the empty string. --- zone/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/command.cpp b/zone/command.cpp index b6ece5756..5167ec17b 100644 --- a/zone/command.cpp +++ b/zone/command.cpp @@ -665,7 +665,7 @@ void command_hotfix(Client *c, const Seperator *sep) hotfix_command = fmt::format("\"{}\" -hotfix={}", shared_memory_path, hotfix_name); } else { - hotfix_command = fmt::format("\"{}\"", shared_memory_path, hotfix_name); + hotfix_command = fmt::format("\"{}\"", shared_memory_path); } LogInfo("Running hotfix command [{}]", hotfix_command);