This commit is contained in:
quang 2024-04-11 23:46:22 +02:00 committed by GitHub
commit 3e7a9a6935
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 1 deletions

View File

@ -168,11 +168,19 @@ public class InjectionFactory {
Object netManager = this.findNetworkManager(channel);
Player temporaryPlayer = playerFactory.createTemporaryPlayer(this.server);
// Use the channel field from an already found network manager to prevent our channel injector given in
// this method from overwriting initialized custom channel implementation in some spigot forks
Channel wrappedChannel = FuzzyReflection.getFieldValue(netManager, Channel.class, true);
if (wrappedChannel == null) {
// Use the channel straight from ChannelHandlerContext as fallback if the field has null value
wrappedChannel = channel;
}
NettyChannelInjector injector = new NettyChannelInjector(
temporaryPlayer,
this.server,
netManager,
channel,
wrappedChannel,
listener,
this,
this.errorReporter);