mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2025-02-25 17:02:18 +01:00
Don't blow up the fallback method just because a plugin isn't
compatible.
This commit is contained in:
parent
debf8c4d88
commit
f0651f7170
@ -166,7 +166,11 @@ public final class PacketFilterManager implements ProtocolManager {
|
|||||||
// Make sure the current listeners are compatible
|
// Make sure the current listeners are compatible
|
||||||
if (lastSuccessfulHook != null) {
|
if (lastSuccessfulHook != null) {
|
||||||
for (PacketListener listener : packetListeners) {
|
for (PacketListener listener : packetListeners) {
|
||||||
|
try {
|
||||||
checkListener(listener);
|
checkListener(listener);
|
||||||
|
} catch (IllegalStateException e) {
|
||||||
|
logger.log(Level.WARNING, "Unsupported listener.", e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user