diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-13 00:37:25 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-13 00:37:25 +0100 |
commit | a13ef03521ce4a8efd1b51f68bab66483653e8e4 (patch) | |
tree | 06c06494e52177d94f22a2892d3737fe27092df4 /lib/rbot | |
parent | 27ee4fabaebdb1f78b1eb6cfb31c43f1dc5a7f49 (diff) |
rfc2812: fix a bug in Client.user initialization
Diffstat (limited to 'lib/rbot')
-rw-r--r-- | lib/rbot/rfc2812.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/rfc2812.rb b/lib/rbot/rfc2812.rb index d4f1e466..cd6a96db 100644 --- a/lib/rbot/rfc2812.rb +++ b/lib/rbot/rfc2812.rb @@ -954,7 +954,7 @@ module Irc # Create a new Client instance def initialize @server = Server.new # The Server - @user = @server.user("") # The User representing the client on this Server + @user = @server.user("*!*@*") # The User representing the client on this Server @handlers = Hash.new |