aboutsummaryrefslogtreecommitdiff
path: root/examples/bot.pl6
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bot.pl6')
-rw-r--r--examples/bot.pl64
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index 12245db..3a2127e 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -14,9 +14,11 @@ my $irc = IRC::Client.new(
:debug<1>
# :channels<#zofbot>
# :host<irc.freenode.net>
+ :port<6667>
:servers(
mine => { :port<5667> },
- inspircd => { :port<6667> },
+ inspircd => { },
+ # freenode => { :host<irc.freenode.net> },
)
:plugins(MyPlug.new)
).run;