aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@yeah.nah.nz>2018-12-08 22:52:54 +1300
committerDavid Phillips <david@yeah.nah.nz>2018-12-08 22:52:54 +1300
commit46533aaf87d2e7117b9c5c2b73944e04f1d3f56c (patch)
treec030a5ffe42498cacab3791c80aee9609504840e
parent01d8c9a4e7a161e520150a87f4797f46d71b3667 (diff)
downloadidalius-46533aaf87d2e7117b9c5c2b73944e04f1d3f56c.tar.xz
Fix silly syntax
-rwxr-xr-xidalius.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/idalius.pl b/idalius.pl
index d741a06..7925597 100755
--- a/idalius.pl
+++ b/idalius.pl
@@ -147,7 +147,7 @@ sub run_command {
# help POE realise when a connection is down. It otherwise seems to not realise
# a connection has fallen over otherwise.
sub custom_ping {
- my ($poek) = @_[KERNEL];
+ my ($poek) = $_[KERNEL];
$poek->yield(userhost => $irc->nick_name());
$poek->delay(custom_ping => $ping_delay);
}