From 6c9897583f49ad0707aaefe808592fcaed664d9d Mon Sep 17 00:00:00 2001 From: kekzdealer Date: Thu, 7 May 2020 22:44:04 +0200 Subject: Removed outdated documentation --- .../java/common/tileentities/GTMTE_FluidMultiStorage.java | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/main') diff --git a/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java b/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java index 5025fc53c1..449bdf0d9d 100644 --- a/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java +++ b/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java @@ -231,15 +231,6 @@ public class GTMTE_FluidMultiStorage extends GT_MetaTileEntity_MultiBlockBase { return offset; } - /** - * Checks structural integrity and registers machine parts. - * Appears to often not run but can be jump started by forcing a block update on the controller. - * (Place a piece of dirt on the front face and remove it again. Dirty fix lol.) - * - * @param thisController Object reference to this controller block's Tile Entity. - * @param guiSlotItem References the item stack that can be placed in that GUI slot - * in the top right. - */ @Override public boolean checkMachine(IGregTechTileEntity thisController, ItemStack guiSlotItem) { // Figure out the vector for the direction the back face of the controller is facing @@ -426,12 +417,10 @@ public class GTMTE_FluidMultiStorage extends GT_MetaTileEntity_MultiBlockBase { } if (this.mEnergyHatches.size() < 1) { - System.out.println("At least one energy hatch is required!"); formationChecklist = false; } if (this.mMaintenanceHatches.size() < 1) { - System.out.println("You need a maintenance hatch to do maintenance."); formationChecklist = false; } -- cgit