diff --git a/zone/gm_commands/zsave.cpp b/zone/gm_commands/zsave.cpp index 8c1cf85dc..acfa4536d 100755 --- a/zone/gm_commands/zsave.cpp +++ b/zone/gm_commands/zsave.cpp @@ -2,11 +2,15 @@ void command_zsave(Client *c, const Seperator *sep) { - if (zone->SaveZoneCFG()) { - c->Message(Chat::Red, "Zone header saved successfully."); - } - else { - c->Message(Chat::Red, "ERROR: Zone header data was NOT saved."); - } + c->Message( + Chat::White, + fmt::format( + "Zone header {}.", + ( + zone->SaveZoneCFG() ? + "saved successfully" : + "failed to save" + ) + ).c_str() + ); } -