Milk bottle broken recipe.
MAGGen-hub opened this issue ยท 3 comments
Describe the Bug
Farmers Delight milk filling/emptying recipe broken (need to replace 27000 (1/3) to 20250(1/4))
If you use bucket of milk with 4 bottles in FarmersDelight you will get 4 bottles of milk.
But create:basin
can be filled with 3 bottles (and emptied with 1 bucket) -> 1 free bottle of milk appeared from nowere...
Reproduction Steps
- Place
create:basin
- Get 1 bucket of milk
- Turn it into 4 bottles of milk using Farmers Delight recipe
- Fill
create:basin
with milk bottles - Take milk from
create:basin
with bucket
Expected Result
We have 1 bucket of milk and 1 bottle of milk...
Infinite milk "logic breaking" bug.
Screenshots and Videos
No response
Crash Report or Log
No response
Operating System
Arch Linux
Mod Version
0.5.0i
Minecraft Version
1.19.2
Other Mods
Farmers Delight
Additional Context
Fixed recipes:
Filling:
{
"type": "create:filling",
"replace": true,
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"farmersdelight"
]
}
],
"ingredients": [
{
"item": "minecraft:glass_bottle"
},
{
"amount": 20250,
"fluidTag": "c:milk"
}
],
"results": [
{
"item": "farmersdelight:milk_bottle"
}
]
}
Emptying:
{
"type": "create:emptying",
"replace": true,
"fabric:load_conditions": [
{
"condition": "fabric:all_mods_loaded",
"values": [
"farmersdelight"
]
}
],
"ingredients": [
{
"item": "farmersdelight:milk_bottle"
}
],
"results": [
{
"item": "minecraft:glass_bottle"
},
{
"amount": 20250,
"fluid": "milk:still_milk"
}
]
}