Rolling mill ignores `count` for input items in its recipes
saltyseadoggo opened this issue ยท 2 comments
Describe the bug
If you specify a count
for the input item in a createaddition:rolling
recipe and then try to use this recipe, the rolling mill will ignore the specified count
and process the items one by one.
To Reproduce
Steps to reproduce the behavior:
- download this datapack: rollingmilltest.zip. it contains this recipe:
{
"type":"createaddition:rolling",
"input": {
"item": "minecraft:dirt",
"count": 2
},
"result": {
"item": "minecraft:stone",
"count": 2
}
}
- start up the game with create and c&a loaded
- create a new world, adding the datapack to it
- obtain two dirt
- place a rolling mill and power it
- ctrl-q to throw both dirt into the rolling mill at the same time
expected behavior: as per the recipe, the two dirt would be milled together into two stone
actual behavior: the count
is ignored. the dirts are milled one at a time, producing a total of four stone.
Additional context
- Mod version: 20230623a
- Forge version: 43.2.8
- Create version: 0.5.1c
if this is intended behavior, then i would like to request that the ability to set the count
for the rolling mill's input item be added. this would open up lots of options for modpack devs- for example, a recipe to mill six immersive engineering hemp into a tough fabric, so you can use the rolling mill to make the fabric more efficiently.~