summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/rbot/core/irclog.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbot/core/irclog.rb b/lib/rbot/core/irclog.rb
index 5a44995d..c42d7adf 100644
--- a/lib/rbot/core/irclog.rb
+++ b/lib/rbot/core/irclog.rb
@@ -167,13 +167,13 @@ class IrcLogModule < CoreBotModule
end
def log_nick(m)
- m.is_on.each { |ch|
+ (m.is_on & @bot.myself.channels).each { |ch|
irclog "@ #{m.oldnick} is now known as #{m.newnick}", ch
}
end
def log_quit(m)
- m.was_on.each { |ch|
+ (m.was_on & @bot.myself.channels).each { |ch|
irclog "@ Quit: #{m.source}: #{m.logmessage}", ch
}
end