aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Server.pm6
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-07-28 21:15:14 -0400
committerZoffix Znet <cpan@zoffix.com>2016-07-28 21:15:14 -0400
commit63c2a163e193ea53e159e2a7ffb8c73bddf9074b (patch)
tree87bcec932d188c50e8f69b1ff088ca5afe31e256 /lib/IRC/Client/Server.pm6
parente3d18b7f1a7c415a41d793c7a3f5a02ab4b19d40 (diff)
Make reconnect stuff work
Diffstat (limited to 'lib/IRC/Client/Server.pm6')
-rw-r--r--lib/IRC/Client/Server.pm62
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IRC/Client/Server.pm6 b/lib/IRC/Client/Server.pm6
index 86f5253..1857fcc 100644
--- a/lib/IRC/Client/Server.pm6
+++ b/lib/IRC/Client/Server.pm6
@@ -10,8 +10,8 @@ has Str $.username;
has Str $.userhost;
has Str $.userreal;
has Str $.current-nick is rw;
-has Promise $.promise is rw;
has Bool $.is-connected is rw;
+has Bool $.has-quit is rw;
has IO::Socket::Async $.socket is rw;
method Str { $!label }