From 71c6950d9538dfa59f50f46e2035dfa0f7a742d7 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 10 Mar 2025 20:59:06 +0700 Subject: [PATCH] Clarify about first replacement --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf543e0..e56b6f3 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ and Xoshiro128PlusPlus (used to generate "sequences" aka random generator used f with a better random number generator, [gjrand](https://gjrand.sourceforge.net). ### Features: - * Replaces `Level#random`; + * 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`.