diff options
author | boubou19 <miisterunknown@gmail.com> | 2024-08-15 15:38:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-15 15:38:58 +0200 |
commit | 0f990a7cfd78c3ede4db09a893e1e6edff164a2a (patch) | |
tree | 5ab69d203be91a1c15313f61d9172f9bbdd4ba82 /src/main/java/gregtech/common/tileentities/machines | |
parent | 33c8d91bbe289651270378316fdadab730aa386f (diff) | |
download | GT5-Unofficial-0f990a7cfd78c3ede4db09a893e1e6edff164a2a.tar.gz GT5-Unofficial-0f990a7cfd78c3ede4db09a893e1e6edff164a2a.tar.bz2 GT5-Unofficial-0f990a7cfd78c3ede4db09a893e1e6edff164a2a.zip |
Cleanup (#2803)
* remove dead code
* use proper materials for tiered circuits
* remove yet another RA1 call
* remove deprecated usage
* small step toward Research station assline recipes migration
* remove dead code
* remove dead code
* remove dead code
* migrate BW recipes
* remove some more RA1 code
* remove bad search and replace + spotlessapply
* yeet deprecated code and change how sieverts for recipes are computed
* fix loading
* fix bad replacements
* spotless apply
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
2 files changed, 0 insertions, 15 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java b/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java index 9e76883a8b..59efd46c94 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java +++ b/src/main/java/gregtech/common/tileentities/machines/multiblock/DistillationTower.java @@ -163,11 +163,6 @@ public class DistillationTower extends StackableController<DistillationTower, Di return StatCollector.translateToLocal(getTileEntityName()); } - // @Override - // public String getLocalName() { - // return "Distillation Tower"; - // } - // @Override protected String getStackableMiddle(int stackIndex) { return stackIndex % 2 == 0 ? STACKABLE_MIDDLE_1 : STACKABLE_MIDDLE_2; diff --git a/src/main/java/gregtech/common/tileentities/machines/multiblock/logic/CokeOvenProcessingLogic.java b/src/main/java/gregtech/common/tileentities/machines/multiblock/logic/CokeOvenProcessingLogic.java index 1534b05bc3..4e6c80f561 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multiblock/logic/CokeOvenProcessingLogic.java +++ b/src/main/java/gregtech/common/tileentities/machines/multiblock/logic/CokeOvenProcessingLogic.java @@ -39,16 +39,6 @@ public class CokeOvenProcessingLogic extends MuTEProcessingLogic<CokeOvenProcess ItemStack input = item.copy(); input.stackSize = 1; return null; - // return FindRecipeResult.ofSuccess( - // GT_Values.RA.stdBuilder() - // .itemInputs(input) - // .itemOutputs(output) - // .noFluidInputs() - // .noFluidOutputs() - // .duration(NORMAL_RECIPE_TIME * timeMultiplier) - // .eut(0) - // .build() - // .get()); } } return null; |