mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
17 lines
283 B
C++
Executable File
17 lines
283 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_flags(Client *c, const Seperator *sep)
|
|
{
|
|
Client *t = c;
|
|
|
|
if (c->Admin() >= minStatusToSeeOthersZoneFlags) {
|
|
Mob *tgt = c->GetTarget();
|
|
if (tgt != nullptr && tgt->IsClient()) {
|
|
t = tgt->CastToClient();
|
|
}
|
|
}
|
|
|
|
t->SendZoneFlagInfo(c);
|
|
}
|
|
|