|
@@ -37,16 +37,17 @@ import java.util.function.Predicate;
|
|
|
* with the corresponding Forge EventPriority shown in brackets:
|
|
|
*
|
|
|
* <ol>
|
|
|
- * <li>{@link #addProperties(Predicate, BiConsumer) Adding} new features to biomes. [HIGH]</li>
|
|
|
- * <li>{@link #removeProperties(Predicate, BiConsumer) Removing} existing features from biomes. [NORMAL]</li>
|
|
|
- * <li>{@link #replaceProperties(Predicate, BiConsumer) Replacing} existing features with new ones. [LOW]</li>
|
|
|
- * <li>Generic {@link #postProcessProperties(Predicate, BiConsumer) Post-Processing} of already modified biome features. [LOWEST]</li>
|
|
|
+ * <li>{@linkplain #addProperties(Predicate, BiConsumer) Adding} new features to biomes. [HIGH]</li>
|
|
|
+ * <li>{@linkplain #removeProperties(Predicate, BiConsumer) Removing} existing features from biomes. [NORMAL]</li>
|
|
|
+ * <li>{@linkplain #replaceProperties(Predicate, BiConsumer) Replacing} existing features with new ones. [LOW]</li>
|
|
|
+ * <li>Generic {@linkplain #postProcessProperties(Predicate, BiConsumer) Post-Processing} of already modified biome features. [LOWEST]</li>
|
|
|
* </ol>
|
|
|
*
|
|
|
* Keep in mind that it isn't strictly <b>required</b> that you use these phases accordingly
|
|
|
* (i.e., you may also add features during Post-Processing, for example); they mostly serve to
|
|
|
* add a predictable order to biome modifications.
|
|
|
*/
|
|
|
+@SuppressWarnings("JavadocReference")
|
|
|
public final class BiomeModifications {
|
|
|
public static void addProperties(BiConsumer<BiomeContext, BiomeProperties.Mutable> modifier) {
|
|
|
BiomeModifications.addProperties(Predicates.alwaysTrue(), modifier);
|