From 7936a5bec31c39ca25c7f7d4449edb871add416b Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Sat, 17 Apr 2010 22:48:49 +0200 Subject: [PATCH] typo --- src/org/jibble/pircbot/PircBot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/jibble/pircbot/PircBot.java b/src/org/jibble/pircbot/PircBot.java index 7dda596..aacc945 100644 --- a/src/org/jibble/pircbot/PircBot.java +++ b/src/org/jibble/pircbot/PircBot.java @@ -905,7 +905,7 @@ public abstract class PircBot implements ReplyConstants { target = token; // XXX: PircBot Patch - (Needed for BIP IRC Proxy) - // If this is a JOIN command, use next token as target + // If this is a NICK command, use next token as target if (command.equalsIgnoreCase("nick")) { target = tokenizer.nextToken(); }