mirror of
https://github.com/FabricMC/fabric.git
synced 2025-02-17 04:01:46 -05:00
Fix #c:brown_dyes containing purple dye instead of brown (#2147)
This commit is contained in:
parent
b09aac60bc
commit
227c2391ff
2 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue