mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
15 lines
297 B
C++
Executable File
15 lines
297 B
C++
Executable File
#include "../client.h"
|
|
#include "../guild_mgr.h"
|
|
|
|
void command_guildlist(Client *c, const Seperator *sep)
|
|
{
|
|
GuildApproval *tmp = guild_mgr.FindGuildByIDApproval(atoi(sep->arg[1]));
|
|
if (tmp) {
|
|
tmp->ApprovedMembers(c);
|
|
}
|
|
else {
|
|
c->Message(Chat::White, "Could not find reference id.");
|
|
}
|
|
}
|
|
|