
Xoroshiro128PlusPlus not available in OpenJDK 21 implementations
smbarbour opened this issue ยท 0 comments
When using an OpenJDK implementation such as Eclipse Adoptium (used by default by most launchers), Xoroshiro128PlusPlus is not an available RandomGenerator algorithm. This algorithm is available via the full Oracle JDK, however.
While this may be a fairly minor issue, Minecraft can, and does, crash if multiple threads access the LegacyRandomSource
java.lang.IllegalStateException: Accessing LegacyRandomSource from multiple threads
at TRANSFORMER/[email protected]/net.minecraft.util.ThreadingDetector.makeThreadingException(ThreadingDetector.java:84) ~[client-1.21.1-20240808.144430-srg.jar%23429!/:?] {re:mixin,pl:connector_pre_launch:A,re:classloading,pl:mixin:APP:cupboard.mixins.json:ThreadingDetectorMixin from mod cupboard,pl:mixin:A,pl:connector_pre_launch:A}
While manually switching to the full Oracle JDK is an option, it may be better to switch to using and packaging something like Apache Commons RNG Core to ensure a proper RNG algorithm gets used, instead of relying on the fallback to the Mojang implementation.