mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
9 lines
166 B
C++
Executable File
9 lines
166 B
C++
Executable File
#include "../client.h"
|
|
#include "../guild_mgr.h"
|
|
|
|
void command_guildapprove(Client *c, const Seperator *sep)
|
|
{
|
|
guild_mgr.AddMemberApproval(atoi(sep->arg[1]), c);
|
|
}
|
|
|