Skip to content

Commit

Permalink
Fix anchors in Biome Modifier docs (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
TelepathicGrunt authored Sep 25, 2024
1 parent 664c431 commit 56cb721
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/worldgen/biomemodifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,27 @@ Biome Modifiers are a data-driven system that allows for changing many aspects o
### Recommended Section To Read:

- Players or pack developers:
- [Applying Biome Modifiers](#Applying-Biome-Modifiers)
- [Built-in Neoforge Biome Modifiers](#Built-in-Biome-Modifiers)
- [Applying Biome Modifiers](#applying-biome-modifiers)
- [Built-in Neoforge Biome Modifiers](#built-in-biome-modifiers)


- Modders doing simple additions or removal biome modifications:
- [Applying Biome Modifiers](#Applying-Biome-Modifiers)
- [Built-in Neoforge Biome Modifiers](#Built-in-Biome-Modifiers)
- [Datagenning Biome Modifiers](#Datagenning-Biome-Modifiers)
- [Applying Biome Modifiers](#applying-biome-modifiers)
- [Built-in Neoforge Biome Modifiers](#built-in-biome-modifiers)
- [Datagenning Biome Modifiers](#datagenning-biome-modifiers)


- Modders who want to do custom or complex biome modifications:
- [Applying Biome Modifiers](#Applying-Biome-Modifiers)
- [Creating Custom Biome Modifiers](#Creating-Custom-Biome-Modifiers)
- [Datagenning Biome Modifiers](#Datagenning-Biome-Modifiers)
- [Applying Biome Modifiers](#applying-biome-modifiers)
- [Creating Custom Biome Modifiers](#creating-custom-biome-modifiers)
- [Datagenning Biome Modifiers](#datagenning-biome-modifiers)


## Applying Biome Modifiers

To have NeoForge load a biome modifier JSON file into the game, the file will need to be under `data/<modid>/neoforge/biome_modifier/<path>.json` folder in the mod's resources, or in a [Datapack][datapacks]. Then, once NeoForge loads the biome modifier, it will read its instructions and apply the described modifications to all target biomes when the world is loaded up. Pre-existing biome modifiers from mods can be overridden by datapacks having a new JSON file at the exact same location and name.

The JSON file can be created by hand following the examples in the '[Built-in NeoForge Biome Modifiers](#Built-in-Biome-Modifiers)' section or be datagenned as shown in the '[Datagenning Biome Modifiers](#Datagenning-Biome-Modifiers)' section.
The JSON file can be created by hand following the examples in the '[Built-in NeoForge Biome Modifiers](#built-in-biome-modifiers)' section or be datagenned as shown in the '[Datagenning Biome Modifiers](#datagenning-biome-modifiers)' section.

## Built-in Biome Modifiers

Expand Down

0 comments on commit 56cb721

Please sign in to comment.