diff options
author | Adam <Adam@anope.org> | 2013-01-08 20:25:01 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-01-08 20:25:01 -0500 |
commit | 9931ec299446c3d9e149f91a953748350c38eba6 (patch) | |
tree | fb3969d5aeb2ce23a7d2cde9fd9e47841b125c4b /modules/commands/cs_fantasy_top.cpp | |
parent | 5f3dfc296041540960f372b010eea623bdd7d335 (diff) |
Use m_rewrite to rewrite op, deop, halfop, ... etc
Diffstat (limited to 'modules/commands/cs_fantasy_top.cpp')
-rw-r--r-- | modules/commands/cs_fantasy_top.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/commands/cs_fantasy_top.cpp b/modules/commands/cs_fantasy_top.cpp index ca9572039..4cf15767d 100644 --- a/modules/commands/cs_fantasy_top.cpp +++ b/modules/commands/cs_fantasy_top.cpp @@ -37,7 +37,6 @@ class CommandCSTop : public Command public: CommandCSTop(Module *creator) : Command (creator, "chanserv/top", 0, 2) { - this->SetFlag(CFLAG_STRIP_CHANNEL); this->SetDesc(_("Displays the top 3 users of a channel")); this->SetSyntax(_("\037channel\037")); } @@ -50,7 +49,6 @@ class CommandCSTop10 : public Command public: CommandCSTop10(Module *creator) : Command (creator, "chanserv/top10", 0, 2) { - this->SetFlag(CFLAG_STRIP_CHANNEL); this->SetDesc(_("Displays the top 10 users of a channel")); this->SetSyntax(_("\037channel\037")); } @@ -63,7 +61,6 @@ class CommandCSGTop : public Command public: CommandCSGTop(Module *creator) : Command (creator, "chanserv/gtop", 0, 1) { - this->SetFlag(CFLAG_STRIP_CHANNEL); this->SetDesc(_("Displays the top 3 users of the network")); this->SetSyntax(""); } @@ -76,7 +73,6 @@ class CommandCSGTop10 : public Command public: CommandCSGTop10(Module *creator) : Command (creator, "chanserv/gtop10", 0, 1) { - this->SetFlag(CFLAG_STRIP_CHANNEL); this->SetDesc(_("Displays the top 10 users of the network")); this->SetSyntax(""); } |