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

This commit is contained in:
Juuxel 2022-04-19 19:42:52 +03:00 committed by GitHub
parent b09aac60bc
commit 227c2391ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

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"
]
}