mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-20 19:04:44 -04:00
Add 'Windswept Hills' biome convention tag (#2878)
* add windswept biome tag * change windswept tag to windswept hills * list out biomes and revert name change
This commit is contained in:
parent
09aba064e4
commit
1b664772cf
3 changed files with 15 additions and 0 deletions
fabric-convention-tags-v1/src
datagen/java/net/fabricmc/fabric/impl/tag/convention/datagen/generators
generated/resources/data/c/tags/worldgen/biome
main/java/net/fabricmc/fabric/api/tag/convention/v1
|
@ -90,6 +90,11 @@ public class BiomeTagGenerator extends FabricTagProvider<Biome> {
|
|||
getOrCreateTagBuilder(ConventionalBiomeTags.EXTREME_HILLS)
|
||||
.add(BiomeKeys.WINDSWEPT_GRAVELLY_HILLS)
|
||||
.add(BiomeKeys.WINDSWEPT_HILLS);
|
||||
getOrCreateTagBuilder(ConventionalBiomeTags.WINDSWEPT)
|
||||
.add(BiomeKeys.WINDSWEPT_HILLS)
|
||||
.add(BiomeKeys.WINDSWEPT_GRAVELLY_HILLS)
|
||||
.add(BiomeKeys.WINDSWEPT_FOREST)
|
||||
.add(BiomeKeys.WINDSWEPT_SAVANNA);
|
||||
getOrCreateTagBuilder(ConventionalBiomeTags.JUNGLE)
|
||||
.addOptionalTag(BiomeTags.IS_JUNGLE);
|
||||
getOrCreateTagBuilder(ConventionalBiomeTags.MESA)
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:windswept_hills",
|
||||
"minecraft:windswept_gravelly_hills",
|
||||
"minecraft:windswept_forest",
|
||||
"minecraft:windswept_savanna"
|
||||
]
|
||||
}
|
|
@ -46,6 +46,7 @@ public final class ConventionalBiomeTags {
|
|||
public static final TagKey<Biome> IN_NETHER = register("in_nether");
|
||||
public static final TagKey<Biome> TAIGA = register("taiga");
|
||||
public static final TagKey<Biome> EXTREME_HILLS = register("extreme_hills");
|
||||
public static final TagKey<Biome> WINDSWEPT = register("windswept");
|
||||
public static final TagKey<Biome> JUNGLE = register("jungle");
|
||||
public static final TagKey<Biome> MESA = register("mesa");
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue