aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
authorSphyix <masifede2@gmail.com>2021-11-20 18:17:27 +0100
committerSphyix <masifede2@gmail.com>2021-11-20 18:17:27 +0100
commite8b7c6d5f47dd6ca0eb7f1cdd9fc69aa53b37a44 (patch)
tree9b6a4aba58b9f3d91b89877d847ebf1778fb7524 /src/Java/gtPlusPlus/xmod/gregtech/common
parent1100e8d6d7709c02955080137324da47c97fb666 (diff)
downloadGT5-Unofficial-e8b7c6d5f47dd6ca0eb7f1cdd9fc69aa53b37a44.tar.gz
GT5-Unofficial-e8b7c6d5f47dd6ca0eb7f1cdd9fc69aa53b37a44.tar.bz2
GT5-Unofficial-e8b7c6d5f47dd6ca0eb7f1cdd9fc69aa53b37a44.zip
fixes
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java
index ed97ca097d..8b248ff2ad 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java
@@ -93,11 +93,6 @@ if (executor == null || mTreeData == null) {
}
}
}
-
-
-
-
-
}
public IMetaTileEntity newMetaEntity(final IGregTechTileEntity aTileEntity) {
@@ -119,12 +114,11 @@ if (executor == null || mTreeData == null) {
.addInfo("Converts EU to Oak Logs")
.addInfo("Eu Usage: 100% | Parallel: 1")
.addInfo("Requires a Saw or Chainsaw in GUI slot")
- .addInfo("Constructed exactly the same as a normal Vacuum Freezer")
.addPollutionAmount(getPollutionPerTick(null) * 20)
.addSeparator()
.beginStructureBlock(3, 3, 3, true)
.addController("Front center")
- .addCasingInfo(mCasingName, 10)
+ .addCasingInfo("Sterile Farm Casing", 10)
.addInputBus("Any casing", 1)
.addOutputBus("Any casing", 1)
.addEnergyHatch("Any casing", 1)
@@ -257,8 +251,8 @@ if (executor == null || mTreeData == null) {
STRUCTURE_DEFINITION = StructureDefinition.<GregtechMetaTileEntityTreeFarm>builder()
.addShape(mName, transpose(new String[][]{
{"XXX", "CCC", "CCC"},
- {"XXX", "C-C", "CCC"},
- {"X~X", "CCC", "CCC"},
+ {"X~X", "C-C", "CCC"},
+ {"XXX", "CCC", "CCC"},
}))
.addElement(
'C',
@@ -269,7 +263,7 @@ if (executor == null || mTreeData == null) {
onElementPass(
x -> ++x.mCasing,
ofBlock(
- ModBlocks.blockCasingsMisc, 0
+ ModBlocks.blockCasings2Misc, 0
)
)
)
@@ -277,7 +271,7 @@ if (executor == null || mTreeData == null) {
.addElement(
'X',
ofBlock(
- ModBlocks.blockCasingsMisc, 0
+ ModBlocks.blockCasings2Misc, 0
)
)
.build();