Disable SynchronizedGJRAND64RandomSource for now

This commit is contained in:
DBotThePony 2025-03-14 21:50:06 +07:00
parent 60cbe70041
commit 83637ca965
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ mod_name=Better Random
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=BSD 2 Clause
# The mod version. See https://semver.org/
mod_version=1.3.3
mod_version=1.3.4
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View File

@ -19,8 +19,8 @@ public final class BetterRandom {
}
public static RandomSource createWorldRandom(Supplier<Thread> thread) {
if (ModList.get().isLoaded("c2me"))
return createWorldRandomC2ME(thread);
//if (ModList.get().isLoaded("c2me"))
// return createWorldRandomC2ME(thread);
return new GJRAND64RandomSource();
}