mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 22:01:30 +00:00
10 lines
209 B
C++
Executable File
10 lines
209 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_reloademote(Client *c, const Seperator *sep)
|
|
{
|
|
zone->NPCEmoteList.Clear();
|
|
zone->LoadNPCEmotes(&zone->NPCEmoteList);
|
|
c->Message(Chat::White, "NPC emotes reloaded.");
|
|
}
|
|
|