Merge branch 'master' into schem_sel_fix
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Dieser Commit ist enthalten in:
Commit
5bcdac1ea1
@ -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) {
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren