Started by
leha7cool
on
Topic category: Help with Minecraft modding (Java Edition)
I have a problem - the dependencies are installed, I'm using the Create mod and want to make a recipe using fluids, but none of them work, while regular ones with items (without fluids) work fine.
This one doesn't work:
```json
{
"type": "create:compacting",
"ingredients": [
{
"type": "neoforge:tag",
"amount": 1000,
"tag": "c:honey"
},
{
"item": "minecraft:diamond"
}
],
"results": [
{
"id": "minecraft:diamond"
}
]
}
```
But this one without fluid works:
```json
{
"type": "create:compacting",
"ingredients": [
{
"item": "minecraft:honey_block"
},
{
"item": "minecraft:diamond"
}
],
"results": [
{
"id": "minecraft:diamond"
}
]
}
```