diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-30 20:00:54 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-07-30 20:00:54 +0200 |
commit | 9769ffed13b4174ad0a0b51dc1afd3c9fd5cef8c (patch) | |
tree | 325cc1ed7dd5386b5b4a4abfeb3581df6e5bd902 /lib/rbot/message.rb | |
parent | d2bdf50753338cde9cdb806f912a822344d7097a (diff) |
message.rb: fix a thinko in inspect()
Diffstat (limited to 'lib/rbot/message.rb')
-rw-r--r-- | lib/rbot/message.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/message.rb b/lib/rbot/message.rb index dd467329..fe7b3cb0 100644 --- a/lib/rbot/message.rb +++ b/lib/rbot/message.rb @@ -155,7 +155,7 @@ module Irc ret << ' plainmessage=' << plainmessage.inspect ret << fields if fields ret << ' (identified)' if identified? - ret << ' (addressed to me)' if identified? + ret << ' (addressed to me)' if address? ret << ' (replied)' if replied? ret << ' (ignored)' if ignored? ret << ' (in thread)' if in_thread? |