Sending whispers with my IRC bot

oof. they sure do make this simple. Funny how /host and everything else works just fine.

so if I try to connect my bot to both connections it tells me im already connected to another. How do i separate a bot into two connections using the same username? Do i create a new bot object with a different name?

public ChatRaids() {
	this.setName("twitchraidstwitch");
}

public static void main(String[] args) throws Exception {
	
	ChatRaids bot = new ChatRaids();
	bot.setVerbose(true);
        ChatRaids whisperBot = new ChatRaids();
	whisperBot .setVerbose(true);
	bot.connect("irc.twitch.tv", 6667, "oauth:0XXXXXXXXXXX");
	whisperBot .connect("199.9.253.119", 6667, "oauth:XXXXXXXXXXXXXXXX");
	bot.joinChannel("#twitchraidstwitch");

}

that doesn’t seem right… hmm…

my head hurts xD