Fix #c:brown_dyes containing purple dye instead of brown ()

This commit is contained in:
Juuxel 2022-04-19 19:42:52 +03:00 committed by modmuss50
parent 374226fae3
commit dd5a0bb164
2 changed files with 2 additions and 2 deletions
fabric-convention-tags-v1/src
datagen/java/net/fabricmc/fabric/impl/tag/convention/datagen/generators
generated/resources/data/c/tags/items

View file

@ -95,7 +95,7 @@ public class ItemTagGenerator extends FabricTagProvider.ItemTagProvider {
getOrCreateTagBuilder(ConventionalItemTags.BLUE_DYES)
.add(Items.BLUE_DYE);
getOrCreateTagBuilder(ConventionalItemTags.BROWN_DYES)
.add(Items.PURPLE_DYE);
.add(Items.BROWN_DYE);
getOrCreateTagBuilder(ConventionalItemTags.GREEN_DYES)
.add(Items.GREEN_DYE);
getOrCreateTagBuilder(ConventionalItemTags.RED_DYES)

View file

@ -1,6 +1,6 @@
{
"replace": false,
"values": [
"minecraft:purple_dye"
"minecraft:brown_dye"
]
}