Sugar Cane fails when trying to add as a bonsai
WenXin20 opened this issue ยท 2 comments
Bonsai Trees version: v1.1.3-b156
Forge version: v14.23.5.2838
Optifine: Yes
Link to Crashlog: None
Screenshot (if possible): Below
Description of the problem including expected versus actual behavior:
For my custom modpack, I decided to make sugar cane growable in Bonsai Pots, but am unable to plant the sugar cane into a Bonsai pot.
The following script fails to work even though it should be correct. The mod doesn't seem to recognize minecraft:reeds
as an item at all. Changing the sapling to something besides reeds works completely fine, but for some reason, adding reeds doesn't work.
I have had this problem for a long time now, but only recently realized that it could be a bug.
{
"name": "minecraft:reeds",
"mod": "minecraft",
"sapling": {
"name": "minecraft:reeds",
"data": 0
},
"growTimeMultiplier": 1.5,
"drops": [
{
"name": "minecraft:reeds",
"data": 0,
"type": "WOOD"
},
{
"name": "minecraft:reeds",
"data": 0,
"type": "SAPLING"
},
{
"name": "minecraft:sugar",
"data": 0,
"type": "FRUIT"
}
],
"compatibleSoilTags": [ "sand", "grass", "dirt" ]
}
The following image shows what the output is once I change the sapling
tag to the quark:reed_block
. It now registers as a sapling type, but the output doesn't seem to recognize minecraft:reeds
as a valid item output for WOOD
or SAPLING
.
(Just ignore the weird texture bugs from the Dark Theme mod...)
Steps to reproduce:
- Add shapes for sugar cane.
- Create a types.d file for sugar cane using the above code.
- Try to plant sugar cane into a Bonsai Pot.