summaryrefslogtreecommitdiff
path: root/modules/commands/ns_identify.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-08-12 15:45:50 -0400
committerAdam <Adam@anope.org>2013-08-12 15:45:50 -0400
commitde5c8c0d386375c46d812c5843a5bb5a850ee865 (patch)
treed2e7834cbe85a56505ee63d22609c79b0ac5af55 /modules/commands/ns_identify.cpp
parent8e011bbb783df2c646f479e7b02989f9165ed7c1 (diff)
Fix some issues with suspend
Diffstat (limited to 'modules/commands/ns_identify.cpp')
-rw-r--r--modules/commands/ns_identify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_identify.cpp b/modules/commands/ns_identify.cpp
index d66913851..ede1c381c 100644
--- a/modules/commands/ns_identify.cpp
+++ b/modules/commands/ns_identify.cpp
@@ -75,7 +75,7 @@ class CommandNSIdentify : public Command
Anope::string pass = params[params.size() - 1];
NickAlias *na = NickAlias::Find(nick);
- if (na && na->nc->HasExt("SUSPENDED"))
+ if (na && na->nc->HasExt("NS_SUSPENDED"))
source.Reply(NICK_X_SUSPENDED, na->nick.c_str());
else if (u->Account() && na && u->Account() == na->nc)
source.Reply(_("You are already identified."));