From 25c018213454c4aee59a46d2d77adad4b73444b0 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Fri, 1 Jan 2016 09:18:35 -0500 Subject: Allow uninitialized passwords --- lib/IRC/Client.pm6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/IRC') diff --git a/lib/IRC/Client.pm6 b/lib/IRC/Client.pm6 index 49d1cff..8ef75b8 100644 --- a/lib/IRC/Client.pm6 +++ b/lib/IRC/Client.pm6 @@ -5,7 +5,7 @@ use IRC::Client::Plugin; class IRC::Client:ver<2.002001> { has Bool:D $.debug = False; has Str:D $.host = 'localhost'; - has Str:D $.password; + has Str $.password; has Int:D $.port where 0 <= $_ <= 65535 = 6667; has Str:D $.nick = 'Perl6IRC'; has Str:D $.username = 'Perl6IRC'; -- cgit v1.1