diff options
author | Prometheus0000000 <prometheus0000000@gmail.com> | 2020-11-19 23:21:19 -0500 |
---|---|---|
committer | Prometheus0000000 <prometheus0000000@gmail.com> | 2020-11-19 23:21:19 -0500 |
commit | f1accbe5e740c60dc3a303e02ab497b3c9a5fadc (patch) | |
tree | 88cb26940c9d2b87b204c3001fe75ed7e1c45613 /src/main/java/common | |
parent | 063fbf32820ad1571c3f7f88d7e563a3b0f2bba9 (diff) | |
download | GT5-Unofficial-f1accbe5e740c60dc3a303e02ab497b3c9a5fadc.tar.gz GT5-Unofficial-f1accbe5e740c60dc3a303e02ab497b3c9a5fadc.tar.bz2 GT5-Unofficial-f1accbe5e740c60dc3a303e02ab497b3c9a5fadc.zip |
Fixed build since I changed the name a little
Diffstat (limited to 'src/main/java/common')
4 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java b/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java index c2315b00fa..709d2c42bb 100644 --- a/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java +++ b/src/main/java/common/tileentities/GTMTE_FluidMultiStorage.java @@ -72,7 +72,7 @@ public class GTMTE_FluidMultiStorage extends GT_MetaTileEntity_MultiBlockBase { .addInfo("Use an Integrated Circuit in the GUI slot to limit which fluid is output.") .addInfo("The index of a stored fluid can be obtained through the Tricorder.") .addSeparator() - .beginStructureBlock(5, 9, 5) + .beginStructureBlock(5, 9, 5, false) .addController("Top Center") .addCasingInfo("T.F.F.T. Casing", 20) .addOtherStructurePart("Storage Field Blocks (Tier I-V)", "Inner 3x7x3 solid pillar") diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index 11fcc27da7..bea7ea2ec5 100644 --- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java +++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java @@ -85,7 +85,7 @@ public class GTMTE_LapotronicSuperCapacitor extends GT_MetaTileEntity_MultiBlock .addInfo("UV-tier glass required for TecTech Laser Hatches") .addInfo("Add more or better capacitors to increase capacity") .addSeparator() - .beginStructureBlock(5, 4, 5) + .beginStructureBlock(5, 4, 5, false) .addStructureInfo("Modular height of 4-18 blocks.") .addController("Front center bottom") .addOtherStructurePart("Lapotronic Super Capacitor Casing", "5x2x5 base (at least 17x)") diff --git a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java index afa434895a..57beb6942f 100644 --- a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java +++ b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK1.java @@ -64,7 +64,7 @@ public class GTMTE_SOFuelCellMK1 extends GT_MetaTileEntity_MultiBlockBase { .addInfo("Outputs " + EU_PER_TICK + "EU/t and " + STEAM_PER_SEC + "L/s Steam")
.addInfo("Additionally, requires " + OXYGEN_PER_SEC + "L/s Oxygen gas")
.addSeparator()
- .beginStructureBlock(3, 3, 5)
+ .beginStructureBlock(3, 3, 5, false)
.addController("Front center")
.addCasingInfo("Clean Stainless Steel Casing", 12)
.addOtherStructurePart("YSZ Ceramic Electrolyte Unit", "3x, Center 1x1x3")
diff --git a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java index ed61cb50a6..8bcb7619e5 100644 --- a/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java +++ b/src/main/java/common/tileentities/GTMTE_SOFuelCellMK2.java @@ -65,7 +65,7 @@ public class GTMTE_SOFuelCellMK2 extends GT_MetaTileEntity_MultiBlockBase { .addInfo("Outputs " + EU_PER_TICK + "EU/t and " + STEAM_PER_SEC + "L/s Steam")
.addInfo("Additionally, requires " + OXYGEN_PER_SEC + "L/s Oxygen gas")
.addSeparator()
- .beginStructureBlock(3, 3, 5)
+ .beginStructureBlock(3, 3, 5, false)
.addController("Front center")
.addCasingInfo("Robust Tungstensteel Machine Casing", 12)
.addOtherStructurePart("GDC Ceramic Electrolyte Unit", "3x, Center 1x1x3")
|