mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-08 21:14:41 -04:00
Fix #c:brown_dyes containing purple dye instead of brown (#2147)
This commit is contained in:
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
|
@ -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)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"replace": false,
|
||||
"values": [
|
||||
"minecraft:purple_dye"
|
||||
"minecraft:brown_dye"
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue