Properly scale the random in SimpleRandomCollection (#2220)

Dieser Commit ist enthalten in:
Hannes Greule 2023-05-12 23:13:35 +02:00 committet von GitHub
Ursprung c57fee5b86
Commit 71bac009db
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -36,7 +36,7 @@ public class SimpleRandomCollection<E> extends RandomCollection<E> {
@Override
public E next(int x, int y, int z) {
return map.ceilingEntry(getRandom().nextDouble(x, y, z)).getValue();
return map.ceilingEntry(getRandom().nextDouble(x, y, z) * this.total).getValue();
}
}