1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 08:33:12 +02:00

Fixed subcommands

This commit is contained in:
Adam
2010-11-29 19:19:00 -05:00
parent 71c433cc50
commit 2a4d57a1ca
35 changed files with 75 additions and 66 deletions
+2 -2
View File
@@ -94,11 +94,11 @@ class CSSetRestricted : public Module
Command *c = FindCommand(ChanServ, "SET");
if (c)
c->AddSubcommand(&commandcssetrestricted);
c->AddSubcommand(this, &commandcssetrestricted);
c = FindCommand(ChanServ, "SASET");
if (c)
c->AddSubcommand(&commandcssasetrestricted);
c->AddSubcommand(this, &commandcssasetrestricted);
}
~CSSetRestricted()