aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-01-01 09:18:35 -0500
committerZoffix Znet <cpan@zoffix.com>2016-01-01 09:18:35 -0500
commit25c018213454c4aee59a46d2d77adad4b73444b0 (patch)
tree514194bc0a07a4c2b0d4edb9f6752acffd302f51 /lib
parentedad3021f06d71ef538ab3993f2e6302117f288f (diff)
Allow uninitialized passwords
Diffstat (limited to 'lib')
-rw-r--r--lib/IRC/Client.pm62
1 files changed, 1 insertions, 1 deletions
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';