summaryrefslogtreecommitdiff
path: root/modules/commands/ns_set_misc.cpp
diff options
context:
space:
mode:
authorAdam <adam@sigterm.info>2013-02-05 08:04:45 -0800
committerAdam <adam@sigterm.info>2013-02-05 08:04:45 -0800
commit2472a41561d178dc0b6167dc1837df7cc1d52945 (patch)
tree07e98e6b3c01b752ed8d2974e256ea617e1aeddf /modules/commands/ns_set_misc.cpp
parent25cec015e8276ea6e1de3e290696071fa5c0b66f (diff)
parent65fbdcfa87f32818eb6591e1a9fd2dd191ec2b95 (diff)
Merge pull request #9 from Robby-/1.9-ns_set_misc
Fixed ns_set_misc not showing help for its SASET commands
Diffstat (limited to 'modules/commands/ns_set_misc.cpp')
-rw-r--r--modules/commands/ns_set_misc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_set_misc.cpp b/modules/commands/ns_set_misc.cpp
index d3d1bc058..a5a0019b6 100644
--- a/modules/commands/ns_set_misc.cpp
+++ b/modules/commands/ns_set_misc.cpp
@@ -173,7 +173,7 @@ class NSSetMisc : public Module
for (int i = 0; i < config.Enumerate("command"); ++i)
{
- if (config.ReadValue("command", "command", "", i) != "nickserv/set/misc")
+ if (config.ReadValue("command", "command", "", i) != "nickserv/set/misc" && config.ReadValue("command", "command", "", i) != "nickserv/saset/misc")
continue;
Anope::string cname = config.ReadValue("command", "name", "", i);