Crops missing `minecraft:crops` tag
diefesson opened this issue ยท 5 comments
Describe the bug
Tinker's Construct Scythe is not working with Mystical Agriculture crops in 1.19.2
To Reproduce
Right click Mystical Agriculture crops with a Tinker's Construct scythe
Expected behavior
Scythe should should harvest and replant crops
Screenshots / Scripts / Logs
Not applicable
Versions (please complete the following information):
- Minecraft: 1.19.2
- Forge: 43.4.2
- Cucumber: 6.0.10
- Mystical Agriculture: 6.0.14
- Singleplayer or Multiplayer: single-player
Additional Information
It worked fine in 1.18.2
May be related to changes introduced in #569
@KnightMiner, did Scythe crop check behavior change?
Using KubeJS to add the tags fixed the problem
ServerEvents.tags('item', event => {
event.add('forge:seeds', '#mysticalagriculture:seeds')
})
ServerEvents.tags('block', event => {
event.add('minecraft:crops', '#mysticalagriculture:crops')
})