diff options
author | Adam <Adam@anope.org> | 2013-04-08 01:02:45 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-08 01:02:45 -0500 |
commit | ac40c53fe41cd193526f51f20b4400ebc0356439 (patch) | |
tree | 441bc090fb5447c0af3da5c9758047d5826750c5 /modules/commands/ns_set.cpp | |
parent | 2eae82da5c3fc53ce9d32a20b0cf5650bb60f540 (diff) |
Fix /ns set display
Diffstat (limited to 'modules/commands/ns_set.cpp')
-rw-r--r-- | modules/commands/ns_set.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/ns_set.cpp b/modules/commands/ns_set.cpp index e0b403f01..f7e3888f6 100644 --- a/modules/commands/ns_set.cpp +++ b/modules/commands/ns_set.cpp @@ -378,7 +378,7 @@ class CommandNSSetDisplay : public Command { const NickAlias *user_na = NickAlias::Find(user), *na = NickAlias::Find(param); - if (!Config->NoNicknameOwnership) + if (Config->NoNicknameOwnership) { source.Reply(_("This command may not be used on this network because nickname ownership is disabled.")); return; |