diff options
author | kekzdealer <kekzdealer@gmail.com> | 2020-05-07 22:44:04 +0200 |
---|---|---|
committer | kekzdealer <kekzdealer@gmail.com> | 2020-05-07 22:44:04 +0200 |
commit | 6c9897583f49ad0707aaefe808592fcaed664d9d (patch) | |
tree | 5ec086250580c6f04f3fdfedc458dc67dba37dc0 /src/main | |
parent | 1c02ee5485a9ec522b118c84288b906196fb75af (diff) | |
download | GT5-Unofficial-6c9897583f49ad0707aaefe808592fcaed664d9d.tar.gz GT5-Unofficial-6c9897583f49ad0707aaefe808592fcaed664d9d.tar.bz2 GT5-Unofficial-6c9897583f49ad0707aaefe808592fcaed664d9d.zip |
Removed outdated documentation
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java | 11 |
1 files changed, 0 insertions, 11 deletions
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;
}
|