#3475: Add KickPlayerRaw channel

This commit is contained in:
Ruan 2023-06-10 10:01:01 +02:00 committed by GitHub
parent 9a71358dfa
commit 9a7617f9b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -584,6 +584,16 @@ public class DownstreamBridge extends PacketHandler
} }
break; break;
} }
case "KickPlayerRaw":
{
ProxiedPlayer player = bungee.getPlayer( in.readUTF() );
if ( player != null )
{
BaseComponent[] kickReason = ComponentSerializer.parse( in.readUTF() );
player.disconnect( kickReason );
}
break;
}
} }
// Check we haven't set out to null, and we have written data, if so reply back back along the BungeeCord channel // Check we haven't set out to null, and we have written data, if so reply back back along the BungeeCord channel