Go to file
2025-03-10 20:59:06 +07:00
gradle/wrapper Initialize MDK 2025-03-10 16:11:09 +07:00
src/main Replace RandomSequence 2025-03-10 20:16:30 +07:00
.gitattributes Initialize MDK 2025-03-10 16:11:09 +07:00
.gitignore Initialize MDK 2025-03-10 16:11:09 +07:00
build.gradle Initialize MDK 2025-03-10 16:11:09 +07:00
gradle.properties Update properties 2025-03-10 16:20:08 +07:00
gradlew Initialize MDK 2025-03-10 16:11:09 +07:00
gradlew.bat Initialize MDK 2025-03-10 16:11:09 +07:00
README.md Clarify about first replacement 2025-03-10 20:59:06 +07:00
settings.gradle Initialize MDK 2025-03-10 16:11:09 +07:00

Better Random

Or Better PRNG, is a mod which replace Minecraft's default Linear congruential generator (LCG for short, used for generating most of random game events) and Xoshiro128PlusPlus (used to generate "sequences" aka random generator used for LootPools) with a better random number generator, gjrand.

Features:

  • Replaces RandomSupport#create, and subsequently, Entity#random, Level#random, countless other places including mods;
  • Replaces RandomSequence and RandomSequences with versions which use gjrand;
  • Replaces Level#getBlockRandomPos to use Level#random. Previously, getBlockRandomPos utilized LCG with even worse properties than one of Level#random.

Compatibility:

Should be compatible with everything that doesn't go around public interfaces vanilla code provide. Existing RandomSequence saved data is left untouched (in meaning that nothing is done to it through code, but Minecraft continue to load/create it upon server start), and removing Better Random mid-game won't have any side effects.