mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
15 lines
312 B
C++
Executable File
15 lines
312 B
C++
Executable File
#include "../client.h"
|
|
#include "../worldserver.h"
|
|
|
|
extern WorldServer worldserver;
|
|
|
|
void command_reloadtitles(Client *c, const Seperator *sep)
|
|
{
|
|
auto pack = new ServerPacket(ServerOP_ReloadTitles, 0);
|
|
worldserver.SendPacket(pack);
|
|
safe_delete(pack);
|
|
c->Message(Chat::Yellow, "Player Titles Reloaded.");
|
|
|
|
}
|
|
|