Files
eqemu-server/zone/gm_commands/show/keyring.cpp
T
2025-08-02 19:15:44 -05:00

13 lines
247 B
C++

#include "../../client.h"
#include "../../dialogue_window.h"
void ShowKeyring(Client *c, const Seperator *sep)
{
Client* t = c;
if (c->GetTarget() && c->GetTarget()->IsClient()) {
t = c->GetTarget()->CastToClient();
}
t->KeyRingList(c);
}