No more excessive NBT tags for drained cells. Closes #1244, #1216 (#1248)

This commit is contained in:
drcrazy 2017-08-25 22:57:47 +03:00 committed by Modmuss50
parent a016a6dd49
commit e19e483d2f

View file

@ -224,6 +224,11 @@ public class DynamicCell extends Item {
return super.drain(maxDrain, doDrain);
}
@Override
public ItemStack getContainer() {
return new ItemStack(ModItems.CELL, 1);
}
}
}