eqemu-server/zone/gm_commands/show/show_keyring.cpp
2025-12-26 20:58:07 -08:00

13 lines
245 B
C++

#include "zone/client.h"
#include "zone/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);
}