Dieser Commit ist enthalten in:
Ursprung
548de003d8
Commit
225bca0516
@ -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