diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-06-12 03:11:29 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-06-12 03:11:29 +0000 |
commit | 2cc4ace60b2b16d4d1dea604175c262b956ec747 (patch) | |
tree | 43da31f8cb96c20f60df63a62c52dc2df5299bcd /src | |
parent | fc78e51452a0244ee672fca91752eb7d982e2541 (diff) |
Forward port of bugfix for bug #1082 from SVN r2322, remove check for NSModeOnID from NS UPDATE, it's not logical to check for NSModeOnID since you must be identified to use NS UPDATE anyways.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2323 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ns_update.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/ns_update.c b/src/core/ns_update.c index f8a12520a..c039fd26b 100644 --- a/src/core/ns_update.c +++ b/src/core/ns_update.c @@ -31,8 +31,7 @@ class CommandNSUpdate : public Command return MOD_CONT; } - if (NSModeOnID) - do_setmodes(u); + do_setmodes(u); check_memos(u); if (na->last_realname) |