1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Pircbot Patch: Call onQuit() before removing the user. Otherwise we do not know which channels the user was on

This commit is contained in:
Sebastian Kaspari 2010-03-09 22:41:01 +01:00
parent 7ee8984f9a
commit 608ea2e614

View File

@ -1026,13 +1026,17 @@ public abstract class PircBot implements ReplyConstants {
}
else if (command.equals("QUIT")) {
// Someone has quit from the IRC server.
// XXX: Pircbot Patch - Call onQuit before removing the user. This way we
// are able to know which channels the user was on.
this.onQuit(sourceNick, sourceLogin, sourceHostname, line.substring(line.indexOf(" :") + 2));
if (sourceNick.equals(this.getNick())) {
this.removeAllChannels();
}
else {
this.removeUser(sourceNick);
}
this.onQuit(sourceNick, sourceLogin, sourceHostname, line.substring(line.indexOf(" :") + 2));
}
else if (command.equals("KICK")) {
// Somebody has been kicked from a channel.