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

Revert change removing the ability to use the Philosophers Stone's alt Function #2358

Open
wants to merge 2 commits into
base: mc1.20.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G

projecte_version=1.0.1
projecte_version=1.0.2
minecraft_version=1.20.1
#Used as a helper for porting when deps we use have not updated yet
previous_minecraft_version=1.19.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private static void registerIMC(BlockState from, BlockState result, @Nullable Bl
}

private static void registerDefault(Block from, Block result, @Nullable Block altResult) {
registerIMC(from.defaultBlockState(), result.defaultBlockState(), null);
registerIMC(from.defaultBlockState(), result.defaultBlockState(), altResult == null ? null : altResult.defaultBlockState());
}

private static void registerAllStates(Block from, Block result, @Nullable Block altResult) {
Expand Down
4 changes: 2 additions & 2 deletions update.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"1.18.2-recommended": "1.0.2",
"1.19.2-latest": "1.1.0",
"1.19.2-recommended": "1.1.0",
"1.20.1-latest": "1.0.1",
"1.20.1-recommended": "1.0.1"
"1.20.1-latest": "1.0.2",
"1.20.1-recommended": "1.0.2"
}
}