Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More Mod Compat 6 #7320

Open
wants to merge 11 commits into
base: mc1.20.1/dev
Choose a base branch
from
Prev Previous commit
Revert Cutting Recipe Gen
  • Loading branch information
Attack8 committed Feb 13, 2025
commit 5557aadfe90f04e6d9996f31beb62d8fdaa0fb70
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down