diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-22 13:44:07 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-22 13:44:07 +0000 |
commit | d0e3551896b446a93065a7dac47e81f721b80b7c (patch) | |
tree | 60b23e777021d4b80e64ac46c36537d726f2fe73 /lib/rbot | |
parent | a5dcd5aee95ea6190107d4466c84af9e5cf22e1b (diff) |
message.rb: fix "I'm Stupid(TM)" bug in [1100]
Diffstat (limited to 'lib/rbot')
-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 acfd5da3..9881503c 100644 --- a/lib/rbot/message.rb +++ b/lib/rbot/message.rb @@ -174,7 +174,7 @@ module Irc # Access the botuser corresponding to the source, if any # def botuser - m.source.botuser rescue @bot.auth.everyone + source.botuser rescue @bot.auth.everyone end |