Skip to content

Commit b048884

Browse files
authored
Fix sweet berries not being plantable by the farmer (#261)
1 parent e0f5ccf commit b048884

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/generated/resources/data/extended_industrialization/tags/item/farmer_plantable.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"minecraft:kelp",
88
"minecraft:crimson_fungus",
99
"minecraft:warped_fungus",
10+
"minecraft:sweet_berries",
1011
"#c:seeds",
1112
"#c:crops",
1213
"#minecraft:villager_plantable_seeds",

src/main/java/net/swedz/extended_industrialization/datagen/server/provider/tags/ItemTagDatagenProvider.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ private void addFarmerStandardPlantableTag()
5050
.add(
5151
Items.KELP,
5252
Items.CRIMSON_FUNGUS,
53-
Items.WARPED_FUNGUS
53+
Items.WARPED_FUNGUS,
54+
Items.SWEET_BERRIES
5455
)
5556
.addTags(
5657
Tags.Items.SEEDS,

0 commit comments

Comments
 (0)