#2631: Fix incorrect types of fishing bobber and spectral arrow

This commit is contained in:
md_5 2019-05-01 18:00:08 +10:00
parent 7d68335c1d
commit 086eb847ec

View File

@ -96,9 +96,9 @@ class EntityMap_1_14 extends EntityMap
DefinedPacket.readUUID( packet );
int type = DefinedPacket.readVarInt( packet );
if ( type == 2 || type == 93 || type == 68 ) // arrow, fishing_bobber or spectral_arrow
if ( type == 2 || type == 101 || type == 71 ) // arrow, fishing_bobber or spectral_arrow
{
if ( type == 2 || type == 68 ) // arrow or spectral_arrow
if ( type == 2 || type == 71 ) // arrow or spectral_arrow
{
oldId = oldId + 1;
newId = newId + 1;