mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 13:41:31 +00:00
* [Commands] Cleanup #reloadaa Command. - Cleanup messages. - Remove unncessary file_exists command from file. - Make reloading of Alternate Advancement data global instead of zone specific. * Update worldserver.cpp * Update worldserver.cpp
12 lines
315 B
C++
Executable File
12 lines
315 B
C++
Executable File
#include "../client.h"
|
|
#include "../../common/file_util.h"
|
|
|
|
void command_reloadaa(Client *c, const Seperator *sep)
|
|
{
|
|
c->Message(Chat::White, "Attempted to reload Alternate Advancement data globally.");
|
|
auto pack = new ServerPacket(ServerOP_ReloadAAData, 0);
|
|
worldserver.SendPacket(pack);
|
|
safe_delete(pack);
|
|
}
|
|
|