mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
12 lines
309 B
C++
Executable File
12 lines
309 B
C++
Executable File
#include "../client.h"
|
|
|
|
void command_acceptrules(Client *c, const Seperator *sep)
|
|
{
|
|
if (!database.GetAgreementFlag(c->AccountID())) {
|
|
database.SetAgreementFlag(c->AccountID());
|
|
c->SendAppearancePacket(AT_Anim, ANIM_STAND);
|
|
c->Message(Chat::White, "It is recorded you have agreed to the rules.");
|
|
}
|
|
}
|
|
|