mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 17:51:28 +00:00
* [Cleanup] Remove hard-coded Status Checks # Notes - Removed the hard-coded GM status checks since if you have access to the command we can now limit access to subcommands if necessary. * Update client_packet.cpp
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);
|
|
}
|