Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix anchors in Biome Modifier docs #167

Merged
merged 2 commits into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading