Fix GJRAND64 not being avalanched upon creation
This commit is contained in:
parent
6767c99c46
commit
72277eb71c
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user