mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
17 lines
245 B
C++
Executable File
17 lines
245 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_zsave(Client *c, const Seperator *sep)
|
|
{
|
|
c->Message(
|
|
Chat::White,
|
|
fmt::format(
|
|
"Zone header {}.",
|
|
(
|
|
zone->SaveZoneCFG() ?
|
|
"saved successfully" :
|
|
"failed to save"
|
|
)
|
|
).c_str()
|
|
);
|
|
}
|