From 1e7ee302281645adc6a15cee72d17bda16e74abb Mon Sep 17 00:00:00 2001 From: alexbegt Date: Thu, 27 Feb 2020 22:32:30 -0500 Subject: [PATCH] Comment out the book until I can fix it. --- .../common/block/tileentity/DirtChestTileEntity.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/progwml6/ironchest/common/block/tileentity/DirtChestTileEntity.java b/src/main/java/com/progwml6/ironchest/common/block/tileentity/DirtChestTileEntity.java index 6933609..1df6d63 100644 --- a/src/main/java/com/progwml6/ironchest/common/block/tileentity/DirtChestTileEntity.java +++ b/src/main/java/com/progwml6/ironchest/common/block/tileentity/DirtChestTileEntity.java @@ -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(); } }