From 5375fd46059fe9a16c7f2c9fa5c1459110ecef4d Mon Sep 17 00:00:00 2001 From: timriker Date: Sun, 7 Dec 2003 20:39:04 +0000 Subject: [PATCH] till multinick joins are fixed git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@902 c11ca15a-4712-0410-83d8-924469b57eb5 --- blootbot/src/IRC/Irc.pl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/blootbot/src/IRC/Irc.pl b/blootbot/src/IRC/Irc.pl index c551a87..7c2fa1a 100644 --- a/blootbot/src/IRC/Irc.pl +++ b/blootbot/src/IRC/Irc.pl @@ -444,16 +444,18 @@ sub joinchan { # hopefully validChan is right. if (&validChan($chan)) { - &status("join: already on $chan"); - } else { + &status("join: already on $chan?"); + } + #} else { &status("joining $b_blue$chan$ob"); return if ($conn->join($chan, $key)); + return if (&validChan($chan)); &DEBUG("joinchan: join failed. trying connect!"); &clearIRCVars(); $conn->connect(); - } + #} } sub part { -- 2.39.5