Fix 1.16.2 type mapping

Fixes ViaVersion/ViaVersion#2021
This commit is contained in:
KennyTV 2020-08-20 11:15:59 +02:00
parent e03da34f55
commit 761249d39f
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -122,6 +122,6 @@ public class EntityPackets1_16_2 extends EntityRewriter<Protocol1_16_1To1_16_2>
@Override
protected EntityType getTypeFromId(int typeId) {
return Entity1_16Types.getTypeFromId(typeId);
return Entity1_16_2Types.getTypeFromId(typeId);
}
}