1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-26 10:52:16 -05:00

IRCConnection: Join auto-join channels on connect

This commit is contained in:
Sebastian Kaspari 2010-04-25 11:45:34 +02:00
parent d94aa0b4f9
commit 7a1f5de01b

View File

@ -157,6 +157,10 @@ public class IRCConnection extends PircBot
// Add support for channel keys
joinChannel(channel);
}
} else {
for (String channel : server.getAutoJoinChannels()) {
joinChannel(channel);
}
}
}