summaryrefslogtreecommitdiff
path: root/src/commands/cmd_notice.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-10-10 02:15:40 +0200
committerattilamolnar <attilamolnar@hush.com>2012-10-12 03:46:19 +0200
commit5961493368ec3c83b688afe6229d4efb1bb4d57a (patch)
tree2edc1a78daec376b04566372229bdcd11a834e16 /src/commands/cmd_notice.cpp
parentba6f7fe42f11374bde035edbc459853725f88737 (diff)
Fix unregistered users getting global notices, also fix certain commands working on unregistered users, spotted by @Adam-
Diffstat (limited to 'src/commands/cmd_notice.cpp')
-rw-r--r--src/commands/cmd_notice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_notice.cpp b/src/commands/cmd_notice.cpp
index b060a534f..d5ef7ba1d 100644
--- a/src/commands/cmd_notice.cpp
+++ b/src/commands/cmd_notice.cpp
@@ -189,7 +189,7 @@ CmdResult CommandNotice::Handle (const std::vector<std::string>& parameters, Use
else
dest = ServerInstance->FindNick(destnick);
- if (dest)
+ if ((dest) && (dest->registered == REG_ALL))
{
if (parameters[1].empty())
{