mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
* [Logging] Add stack trace in code paths that shouldn't occur * Update zone_store.cpp * Windows workaround
13 lines
254 B
C++
13 lines
254 B
C++
#include "../../common/zone_store.h"
|
|
|
|
void WorldserverCLI::TestCommand(int argc, char **argv, argh::parser &cmd, std::string &description)
|
|
{
|
|
description = "Test command";
|
|
|
|
if (cmd[{"-h", "--help"}]) {
|
|
return;
|
|
}
|
|
|
|
zone_store.GetZoneName(0, false);
|
|
}
|