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