summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-04-05 15:45:03 -0500
committerAdam <Adam@anope.org>2013-04-05 15:45:03 -0500
commit3cc7950c4b8ff7bec312ab6acd7bd6a203777b0a (patch)
treef689e8f7c33d362d139c5c28f6710c2a48d40771
parent854bc4db0c7dfe62dc11d93915cbdbdd2fec0f08 (diff)
Fix not constructing the /bs set greet command
-rw-r--r--modules/commands/bs_set.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/commands/bs_set.cpp b/modules/commands/bs_set.cpp
index 5aa8a77ec..784ea7f8b 100644
--- a/modules/commands/bs_set.cpp
+++ b/modules/commands/bs_set.cpp
@@ -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");