Revert Cutting Recipe Gen

This commit is contained in:
attack8 2025-02-13 17:28:36 -05:00
parent bcdce73cff
commit 5557aadfe9
2 changed files with 11 additions and 6 deletions

View file

@ -72,13 +72,17 @@ public class CuttingRecipeGen extends ProcessingRecipeGen {
// Oh The Biomes You'll Go
BYG =
cuttingCompat(Mods.BWG, "aspen", "baobab", "blue_enchanted", "cika", "cypress", "ebony",
"fir", "green_enchanted", "holly", "jacaranda", "ironwood", "mahogany", "maple", "sakura", "white_mangrove",
cuttingCompat(Mods.BYG, "aspen", "baobab", "blue_enchanted", "cika", "cypress", "ebony", "ether",
"fir", "green_enchanted", "holly", "jacaranda", "lament", "mahogany", "maple", "nightshade",
"palm", "pine", "rainbow_eucalyptus", "redwood", "skyris", "willow", "witch_hazel", "zelkova"),
BYG_2 = stripAndMakePlanks(Mods.BWG, "florus_stem", "stripped_florus_stem", "florus_planks"),
BYG_3 = stripAndMakePlanks(Mods.BWG, "florus_wood", "stripped_florus_wood", "florus_planks"),
BYG_4 = stripAndMakePlanks(Mods.BWG, "palo_verde_log", "stripped_palo_verde_log", null),
BYG_5 = stripAndMakePlanks(Mods.BWG, "palo_verde_wood", "stripped_palo_verde_wood", null),
BYG_2 = stripAndMakePlanks(Mods.BYG, "bulbis_stem", "stripped_bulbis_stem", "bulbis_planks"),
BYG_3 = stripAndMakePlanks(Mods.BYG, "bulbis_wood", "stripped_bulbis_wood", "bulbis_planks"),
BYG_4 = stripAndMakePlanks(Mods.BYG, null, "imparius_stem", "imparius_planks"),
BYG_5 = stripAndMakePlanks(Mods.BYG, null, "imparius_hyphae", "imparius_planks"),
BYG_6 = stripAndMakePlanks(Mods.BYG, null, "fungal_imparius_stem", "imparius_planks"),
BYG_7 = stripAndMakePlanks(Mods.BYG, null, "fungal_imparius_hyphae", "imparius_planks"),
BYG_8 = stripAndMakePlanks(Mods.BYG, "palo_verde_log", "stripped_palo_verde_log", null),
BYG_9 = stripAndMakePlanks(Mods.BYG, "palo_verde_wood", "stripped_palo_verde_wood", null),
// Silent Gear
SG = cuttingCompat(Mods.SG, "netherwood"),

View file

@ -17,6 +17,7 @@ public enum Mods {
HEX("hexcasting"),
ID("integrateddynamics", b -> b.strippedWoodIsSuffix()),
BWG("biomeswevegone"),
BYG("biomeswevegone"), // TODO: Remove when CuttingRecipeGen is updated
SG("silentgear"),
TIC("tconstruct"),
AP("architects_palette"),