
item_inside recipe with block_in: soul fire (on soul sand) causes the recipe to be inconsistent to activate
Dutchs opened this issue ยท 3 comments
Mod loader
Please select
Minecraft version
1.20.1
Mod version
5.1.14
Modloader version
Forge: 47.3.0
Modpack info
https://www.curseforge.com/minecraft/modpacks/skyfactory-5
[IMPORTANT] If bug:
- I have confirmed this bug is reproducible on a minimal setup, not a modpack with many other mods.
[IMPORTANT] If bug: The latest.log file, not the crash report
No response
Issue description
item_inside
recipe with block_in
: soul fire (on soul sand) often fails to trigger, this is likely due to the items falling below and out of the flames as the collision box on soul sand is slightly smaller.
This same recipes does work on soul soil consistently.
Included my test data folder in case that comes in handy.
data.zip
Hi, I think you can add a hidden recipe that block_in
is soul sand and detects if the block above is soul fire
Thanks for the tip, something like this I assume?
{
"type": "lychee:item_inside",
"hide_in_viewer": true,
"contextual": [
{
"type": "location",
"offsetY": 1,
"predicate": {
"block": {
"blocks": [
"minecraft:soul_fire"
]
}
}
}
],
"item_in": {
"item": "minecraft:light_blue_dye"
},
"block_in": {
"blocks": ["minecraft:soul_sand"]
},
"post": [
{
"type": "drop_item",
"item": "mysticalagriculture:prosperity_shard"
}
]
}