mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
14 lines
335 B
C++
Executable File
14 lines
335 B
C++
Executable File
#include "../client.h"
|
|
#include "../guild_mgr.h"
|
|
|
|
void command_guildcreate(Client *c, const Seperator *sep)
|
|
{
|
|
if (strlen(sep->argplus[1]) > 4 && strlen(sep->argplus[1]) < 16) {
|
|
guild_mgr.AddGuildApproval(sep->argplus[1], c);
|
|
}
|
|
else {
|
|
c->Message(Chat::White, "Guild name must be more than 4 characters and less than 16.");
|
|
}
|
|
}
|
|
|