mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
13 lines
247 B
C++
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);
|
|
}
|