mirror of
https://github.com/SpigotMC/BungeeCord.git
synced 2024-11-05 18:22:03 +01:00
#3311: Fix chat handling on older versions
This commit is contained in:
parent
cc4765b4fe
commit
fc8685a042
@ -596,10 +596,6 @@ public enum Protocol
|
||||
{
|
||||
// Mapping is non current, but the next one may be ok
|
||||
ProtocolMapping nextMapping = mappings[mappingIndex + 1];
|
||||
if ( nextMapping.packetID < 0 )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
if ( nextMapping.protocolVersion == protocol )
|
||||
{
|
||||
@ -610,6 +606,11 @@ public enum Protocol
|
||||
}
|
||||
}
|
||||
|
||||
if ( mapping.packetID < 0 )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
ProtocolData data = protocols.get( protocol );
|
||||
data.packetMap.put( packetClass, mapping.packetID );
|
||||
data.packetConstructors[mapping.packetID] = constructor;
|
||||
|
Loading…
Reference in New Issue
Block a user