aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
authorMatt <mtthw8198@gmail.com>2021-09-01 13:41:47 -0700
committerMatt <mtthw8198@gmail.com>2021-09-01 13:41:47 -0700
commit2b9ccc57c92d48dbdda56172f3fdd5e1033ccaa7 (patch)
treecb6c1f38ce75d3a3ea6b9be6d7e76c929037bc17 /src/main/java/com
parent6beca9b201b111dcc2cbb1505091f996a37694ee (diff)
downloadGT5-Unofficial-2b9ccc57c92d48dbdda56172f3fdd5e1033ccaa7.tar.gz
GT5-Unofficial-2b9ccc57c92d48dbdda56172f3fdd5e1033ccaa7.tar.bz2
GT5-Unofficial-2b9ccc57c92d48dbdda56172f3fdd5e1033ccaa7.zip
Deprecating on Basdxz's request
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_TM_proccessingStack.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_TM_proccessingStack.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_TM_proccessingStack.java
index 38e14b9a6f..2d64e608c5 100644
--- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_TM_proccessingStack.java
+++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/GT_MetaTileEntity_TM_proccessingStack.java
@@ -21,7 +21,27 @@ import static com.github.technus.tectech.mechanics.structure.Structure.adders;
import static gregtech.api.GregTech_API.sBlockCasings4;
import static net.minecraft.util.StatCollector.translateToLocal;
+@Deprecated
public class GT_MetaTileEntity_TM_proccessingStack extends GT_MetaTileEntity_MultiblockBase_EM implements IConstructable {
+ protected GT_MetaTileEntity_TM_proccessingStack(int aID, String aName, String aNameRegional) {
+ super(aID, aName, aNameRegional);
+ }
+
+ @Override
+ public void construct(ItemStack stackSize, boolean hintsOnly) {
+
+ }
+
+ @Override
+ public String[] getStructureDescription(ItemStack stackSize) {
+ return new String[0];
+ }
+
+ @Override
+ public IMetaTileEntity newMetaEntity(IGregTechTileEntity aTileEntity) {
+ return null;
+ }
+ /*
//region variables
private boolean hasBeenPausedThisCycle = false;
//endregion
@@ -131,4 +151,5 @@ public class GT_MetaTileEntity_TM_proccessingStack extends GT_MetaTileEntity_Mul
public String[] getStructureDescription(ItemStack stackSize) {
return description;
}
+ */
} \ No newline at end of file