Skip to content

Commit

Permalink
Remove silly recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorbatron committed Oct 8, 2024
1 parent e4e6660 commit 9047585
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
5 changes: 0 additions & 5 deletions src/main/java/com/zorbatron/zbgt/ZBGTConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ public static class MultiblockSettings {

public static class RecipeSettings {

@Config.Comment({ "How silly are you?",
"Default: true" })
@Config.Name("Silly Recipes")
public boolean enableSillyRecipes = true;

@Config.Comment({ "Enable recipes for the large parallel hatches.",
"Default: true" })
@Config.Name("Parallel Hatch Recipes")
Expand Down
15 changes: 0 additions & 15 deletions src/main/java/com/zorbatron/zbgt/recipe/MiscRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import static gregtech.api.unification.ore.OrePrefix.*;

import com.nomiceu.nomilabs.gregtech.material.registry.LabsMaterials;
import com.zorbatron.zbgt.ZBGTConfig;
import com.zorbatron.zbgt.api.ZBGTAPI;
import com.zorbatron.zbgt.common.items.ZBGTMetaItems;
import com.zorbatron.zbgt.recipe.helpers.RecipeAssists;
Expand All @@ -25,11 +24,6 @@ public class MiscRecipes {
protected static void init() {
genericCircuits();
magneticFluids();

if (ZBGTConfig.recipeSettings.enableSillyRecipes) {
sillyRecipes();
}

ggCircuits();
engraver();

Expand Down Expand Up @@ -166,15 +160,6 @@ private static void genericCircuits() {
}
}

private static void sillyRecipes() {
COMPRESSOR_RECIPES.recipeBuilder()
.fluidInputs(Water.getFluid(Integer.MAX_VALUE))
.fluidOutputs(Neutronium.getFluid(1))
.circuitMeta(1)
.EUt(Integer.MAX_VALUE).duration(Integer.MAX_VALUE)
.buildAndRegister();
}

private static void ggCircuits() {
ASSEMBLER_RECIPES.recipeBuilder()
.input(MetaItems.ELITE_CIRCUIT_BOARD)
Expand Down

0 comments on commit 9047585

Please sign in to comment.