mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
16 lines
327 B
C++
Executable File
16 lines
327 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_hatelist(Client *c, const Seperator *sep)
|
|
{
|
|
Mob *target = c->GetTarget();
|
|
if (target == nullptr) {
|
|
c->Message(Chat::White, "Error: you must have a target.");
|
|
return;
|
|
}
|
|
|
|
c->Message(Chat::White, "Display hate list for %s..", target->GetName());
|
|
target->PrintHateListToClient(c);
|
|
}
|
|
|
|
|