[#1714] Make a copy of the main Minecraft buffer as EntityMap.rewriteVarInt may require more bytes than available.
This commit is contained in:
@@ -88,7 +88,7 @@ public abstract class EntityMap
|
||||
int readIdLength = packet.readerIndex() - offset;
|
||||
if ( readId == oldId || readId == newId )
|
||||
{
|
||||
ByteBuf data = packet.slice().copy();
|
||||
ByteBuf data = packet.copy();
|
||||
packet.readerIndex( offset );
|
||||
packet.writerIndex( offset );
|
||||
DefinedPacket.writeVarInt( readId == oldId ? newId : oldId, packet );
|
||||
|
@@ -37,7 +37,7 @@ class EntityMap_1_7_6 extends EntityMap_1_7_2
|
||||
if ( profile != null && profile.getProperties() != null
|
||||
&& profile.getProperties().length >= 1 )
|
||||
{
|
||||
ByteBuf rest = packet.slice().copy();
|
||||
ByteBuf rest = packet.copy();
|
||||
packet.readerIndex( readerIndex );
|
||||
packet.writerIndex( readerIndex + packetIdLength + idLength );
|
||||
DefinedPacket.writeString( player.getUniqueId().toString(), packet );
|
||||
|
Reference in New Issue
Block a user