-
Notifications
You must be signed in to change notification settings - Fork 238
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
Trying to use 1.17.1 leads to "This version of Minecraft isn't compatible with your java installation" #1080
Comments
I'm seeing this as well |
Same issue, running multiple java versions on my machine, java 16 showing up when using "java -version" in terminal |
Amidst decompiles Minecraft classes to access the biome generation part. Except Amidst was made and compiled with Java 8, so when it tries to decompile the Minecraft 1.17 classes that were made and compiled using Java 16, well you get that message. (which basically says that the java version it uses is too old to decompile the new classes) I downloaded the source code and converted the project to Java 17, and low and behold it works. Or of course you can do as I did, but it does require some knowledge. |
I've found a pretty simple solution. I downloaded JDK for Java 16 and that makes the jar version of amidst work. As far as I can tell the exe version can't really be fixed. |
That too 👆 |
the error happens because 1.17 runs on java 16, and 1.18 runs on java 17. however, even with java 17, 1.18 wont work because amidst itself hasnt been updated |
https://github.com/mpsijm/amidst/releases/tag/v4.7-java-17 should fix Amidst for Minecraft 1.17 and below, see #1088 for details. @Caty15 is right: for Amidst to work with Minecraft 1.18, it should first be fixed to work with the new world generation. |
Amidst v4-7. My Java is the most recent version. It works for all other versions below 1.17.
The text was updated successfully, but these errors were encountered: