1
0
mirror of https://github.com/chylex/Hardcore-Ender-Expansion.git synced 2025-04-10 20:15:42 +02:00

Fix not constructing EntityDataWatcher in EntityProjectilePotion

This commit is contained in:
chylex 2015-11-16 02:00:42 +01:00
parent 7d500037ad
commit 7bca373fed

View File

@ -38,6 +38,7 @@ public class EntityProjectilePotion extends EntityPotion{
@Override
protected void entityInit(){
super.entityInit();
entityData = new EntityDataWatcher(this);
entityData.addShort(Data.ITEM_ID);
}