Fix GJRAND64 not being avalanched upon creation

This commit is contained in:
DBotThePony 2025-03-11 17:57:09 +07:00
parent 6767c99c46
commit 72277eb71c
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 5 additions and 1 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.2.0
mod_version=1.2.1
# 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

@ -71,6 +71,10 @@ public final class GJRAND64RandomSource implements RandomGenerator, RandomSource
s1 = seed1;
s2 = 2000001L;
s3 = 0L;
for (int i = 0; i < 14; i++) {
nextLong();
}
}
@Override