SteamWar/SpigotCore
Archiviert
13
0

Merge branch 'master' into schem_sel_fix
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Chaoscaot 2022-01-11 16:59:05 +01:00
Commit 5bcdac1ea1

Datei anzeigen

@ -310,7 +310,13 @@ public class TinyProtocol {
} }
// See ChannelInjector in ProtocolLib, line 590 // See ChannelInjector in ProtocolLib, line 590
channel.eventLoop().execute(() -> channel.pipeline().remove(handlerName)); channel.eventLoop().execute(() -> {
try {
channel.pipeline().remove(handlerName);
} catch (NoSuchElementException e) {
// ignore
}
});
} }
public boolean hasInjected(Player player) { public boolean hasInjected(Player player) {