diff options
author | Adam <Adam@anope.org> | 2013-08-12 15:45:50 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-12 15:45:50 -0400 |
commit | de5c8c0d386375c46d812c5843a5bb5a850ee865 (patch) | |
tree | d2e7834cbe85a56505ee63d22609c79b0ac5af55 /modules/commands/ns_access.cpp | |
parent | 8e011bbb783df2c646f479e7b02989f9165ed7c1 (diff) |
Fix some issues with suspend
Diffstat (limited to 'modules/commands/ns_access.cpp')
-rw-r--r-- | modules/commands/ns_access.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_access.cpp b/modules/commands/ns_access.cpp index d42ef5bc6..f21edbf08 100644 --- a/modules/commands/ns_access.cpp +++ b/modules/commands/ns_access.cpp @@ -133,7 +133,7 @@ class CommandNSAccess : public Command source.Reply(BAD_USERHOST_MASK); source.Reply(MORE_INFO, Config->StrictPrivmsg.c_str(), source.service->nick.c_str(), source.command.c_str()); } - else if (nc->HasExt("SUSPENDED")) + else if (nc->HasExt("NS_SUSPENDED")) source.Reply(NICK_X_SUSPENDED, nc->display.c_str()); else if (cmd.equals_ci("ADD")) return this->DoAdd(source, nc, mask); |