diff --git a/src/main/java/com/technovision/ironchest/blocks/blockentities/GenericIronChestBlockEntity.java b/src/main/java/com/technovision/ironchest/blocks/blockentities/GenericIronChestBlockEntity.java index c338214..cf0b8c8 100644 --- a/src/main/java/com/technovision/ironchest/blocks/blockentities/GenericIronChestBlockEntity.java +++ b/src/main/java/com/technovision/ironchest/blocks/blockentities/GenericIronChestBlockEntity.java @@ -33,11 +33,6 @@ public GenericIronChestBlockEntity(ExtraChestTypes type, BlockPos pos, BlockStat this.setInvStackList(DefaultedList.ofSize(this.size(), ItemStack.EMPTY)); } - @Override - public ScreenHandler createMenu(int syncId, PlayerInventory inventory, PlayerEntity player) { - return new ExtraChestScreenHandler(type.getScreenHandlerType(), type, syncId, inventory, ScreenHandlerContext.create(world, pos)); - } - @Override protected ScreenHandler createScreenHandler(int syncId, PlayerInventory inventory) { return new ExtraChestScreenHandler(type.getScreenHandlerType(), type, syncId, inventory, ScreenHandlerContext.create(world, pos));