From a13ef03521ce4a8efd1b51f68bab66483653e8e4 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Wed, 13 Feb 2008 00:37:25 +0100 Subject: [PATCH] rfc2812: fix a bug in Client.user initialization --- lib/rbot/rfc2812.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5