eqemu-server/zone/gm_commands/reloadstatic.cpp
Kinglykrab 6846deb9c8
[Commands] Cleanup #reloadstatic Command. (#2130)
- Cleanup messages and logic.
- Make reloading of static zone data global instead of zone specific.
2022-05-06 20:03:22 -04:00

11 lines
281 B
C++
Executable File

#include "../client.h"
void command_reloadstatic(Client *c, const Seperator *sep)
{
c->Message(Chat::White, "Attempting to reload static zone data globally.");
auto pack = new ServerPacket(ServerOP_ReloadStaticZoneData, 0);
worldserver.SendPacket(pack);
safe_delete(pack);
}