-
Notifications
You must be signed in to change notification settings - Fork 986
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
base: mc1.20.1/dev
Are you sure you want to change the base?
More Mod Compat 6 #7320
Conversation
Update dependencies to 1.20.1
# Conflicts: # src/generated/resources/.cache/b256105d8411632b0d585496ea8944a751a08034
- Update BYG/BWG compat (closes Creators-of-Create#7193)
src/main/java/com/simibubi/create/foundation/data/recipe/MillingRecipeGen.java
Outdated
Show resolved
Hide resolved
src/main/java/com/simibubi/create/infrastructure/data/CreateRegistrateTags.java
Outdated
Show resolved
Hide resolved
@@ -16,7 +16,8 @@ public enum Mods { | |||
FA("forbidden_arcanus"), | |||
HEX("hexcasting"), | |||
ID("integrateddynamics", b -> b.strippedWoodIsSuffix()), | |||
BYG("byg"), | |||
BWG("biomeswevegone"), | |||
BYG("biomeswevegone"), // TODO: Remove when CuttingRecipeGen is updated |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That'd be now then (:
.output(.125f, Items.NETHERRACK, 1) | ||
.whenModLoaded(Mods.BYG.getId())), | ||
|
||
BYG_RED_ROCK_ORE = create(Mods.BYG.recipeId("red_rock"), b -> b.duration(150) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As seen in the other PR, this recipe is still valid and can be updated instead of removed.
Edit as the lines are misplaced: the red rock one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/Creators-of-Create/Create/blob/mc1.20.1/dev/src/generated/resources/data/create/recipes/milling/sandstone.json
Some parity for BWG's sandstones would be nice to have.
Oh and almost forgot. BWG's Palo Verde wood is crafted into Birch planks, so cutting recipes for the stripped ones into those would be nice as well. |
Update BYG/BWG compat (closes #7193)