mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 04:56:20 +00:00
[Commands] Add #show keyring Subcommand (#4973)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user