Comment out the book until I can fix it.

This commit is contained in:
alexbegt 2020-02-27 22:32:30 -05:00
parent 14fe3e34fb
commit 1e7ee30228
1 changed files with 4 additions and 3 deletions

View File

@ -24,7 +24,7 @@ public class DirtChestTileEntity extends GenericIronChestTileEntity {
super(IronChestsTileEntityTypes.DIRT_CHEST.get(), IronChestsTypes.DIRT, IronChestsBlocks.DIRT_CHEST::get);
if (!bookDataCreated) {
createBookData();
//createBookData();
}
}
@ -36,11 +36,12 @@ public class DirtChestTileEntity extends GenericIronChestTileEntity {
@Override
public void wasPlaced(LivingEntity entityLivingBase, ItemStack itemStack) {
if (!(itemStack.hasTag() && itemStack.getTag().getBoolean("been_placed"))) {
this.setInventorySlotContents(0, dirtChest9000GuideBook.copy());
//TODO FIX BOOK
//this.setInventorySlotContents(0, dirtChest9000GuideBook.copy());
}
if (!bookDataCreated) {
createBookData();
//createBookData();
}
}