Hi! I just wanted to post this in case someone else runs into this issue.

I've been trying to get Create: Above and Beyond running on the GraalVM EE (minimum version is JVM 17). A couple mods weren't working though. Digging through the logs I found some reflection errors. Turns out that the later JVM versions are more strict about reflection. I found this post on Stack Overflow which mentioned some java arguments.

TL;DR: add `–add-opens java.base/java.lang=ALL-UNNAMED –add-opens java.base/java.lang.reflect=ALL-UNNAMED` to your java arguments to get some of these mods working.

by smj-edison

Leave A Reply