diff --git a/docs/datastorage/codecs.md b/docs/datastorage/codecs.md index e948eb3c..a5ea498e 100644 --- a/docs/datastorage/codecs.md +++ b/docs/datastorage/codecs.md @@ -224,7 +224,7 @@ public static final Codec INT_CODEC = Codec.STRING.comapFlatMap( Range codecs are an implementation of `#flatXMap` which returns an error `DataResult` if the value is not inclusively between the set minimum and maximum. The value is still provided as a partial result if outside the bounds. There are implementations for integers, floats, and doubles via `#intRange`, `#floatRange`, and `#doubleRange` respectively. ```java -public static final Codec RANGE_CODEC = Codec.intRange(0, 4); +public static final Codec RANGE_CODEC = Codec.intRange(0, 4); ``` ```js @@ -431,7 +431,7 @@ public static final Codec = DISPATCH.getCodec() // Gets Codec> = REGISTRAR.register( [Examples][examples] can be found on the Forge Git repository, including silk touch and smelting effects. [tags]: ./tags.md -[resloc]: ../../concepts/resources.md#ResourceLocation +[resloc]: ../../concepts/resources.md#resourcelocation [codec]: #the-loot-modifier-codec [registered]: ../../concepts/registries.md#methods-for-registering [codecdef]: ../../datastorage/codecs.md diff --git a/docs/resources/server/index.md b/docs/resources/server/index.md index bc5b9313..2878d4a3 100644 --- a/docs/resources/server/index.md +++ b/docs/resources/server/index.md @@ -11,4 +11,4 @@ Additional reading: [Resource Locations][resourcelocation] [datapack]: https://minecraft.wiki/w/Data_pack [createdatapack]: https://minecraft.wiki/w/Tutorials/Creating_a_data_pack -[resourcelocation]: ../../concepts/resources.md#ResourceLocation +[resourcelocation]: ../../concepts/resources.md#resourcelocation diff --git a/mkdocs.yml b/mkdocs.yml index f95fc1aa..91a4c361 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -39,7 +39,6 @@ nav: - Screens: 'gui/screens.md' - Rendering: - Model Extensions: - - Introduction: 'rendering/modelextensions/index.md' - Root Transforms: 'rendering/modelextensions/transforms.md' - Render Types: 'rendering/modelextensions/rendertypes.md' - Part Visibility: 'rendering/modelextensions/visibility.md'