1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 19:03:14 +02:00

Fix not constructing the /bs set greet command

This commit is contained in:
Adam
2013-04-05 15:45:03 -05:00
parent 854bc4db0c
commit 3cc7950c4b
+2 -1
View File
@@ -486,13 +486,14 @@ class BSSet : public Module
CommandBSSetDontKickOps commandbssetdontkickops;
CommandBSSetDontKickVoices commandbssetdontkickvoices;
CommandBSSetFantasy commandbssetfantasy;
CommandBSSetGreet commandbssetgreet;
CommandBSSetNoBot commandbssetnobot;
CommandBSSetPrivate commandbssetprivate;
public:
BSSet(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandbsset(this), commandbssetbanexpire(this), commandbssetdontkickops(this), commandbssetdontkickvoices(this),
commandbssetfantasy(this), commandbssetnobot(this), commandbssetprivate(this)
commandbssetfantasy(this), commandbssetgreet(this), commandbssetnobot(this), commandbssetprivate(this)
{
this->SetAuthor("Anope");