Fixed inventory drop for chests. Closes #1239

This commit is contained in:
drcrazy 2017-09-20 02:26:37 +03:00
parent 8a1d9c78eb
commit 833974d698
2 changed files with 10 additions and 0 deletions

View file

@ -56,6 +56,11 @@ public class BlockQuantumChest extends BlockMachineBase {
this.setHardness(2.0F);
ShootingStar.registerModel(new ModelCompound(ModInfo.MOD_ID, this, "machines/tier3_machines"));
}
@Override
public boolean isAdvanced() {
return true;
}
@Override
protected void dropInventory(final World world, final BlockPos pos) {