mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 18:51:29 +00:00
12 lines
216 B
C++
12 lines
216 B
C++
#include "../../client.h"
|
|
|
|
void ShowFlags(Client *c, const Seperator *sep)
|
|
{
|
|
Client *t = c;
|
|
if (c->GetTarget() && c->GetTarget()->IsClient()) {
|
|
t = c->GetTarget()->CastToClient();
|
|
}
|
|
|
|
t->SendZoneFlagInfo(c);
|
|
}
|