diff options
Diffstat (limited to 'lib/rbot/irc.rb')
-rw-r--r-- | lib/rbot/irc.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rbot/irc.rb b/lib/rbot/irc.rb index 81bb48eb..93ac6b85 100644 --- a/lib/rbot/irc.rb +++ b/lib/rbot/irc.rb @@ -1159,7 +1159,8 @@ module Irc # new_user(_str_, +false+)
#
def user(str)
- new_user(str, false)
+ u = new_user(str, false)
+ debug "Server user #{u.inspect} from #{str.inspect}"
end
# Remove User _someuser_ from the list of <code>User</code>s.
|