
Auto-Smelt causes cascading stack errors
TheIllusiveC4 opened this issue ยท 1 comments
Minecraft Version: 1.19.3
Fabric API: 0.73.2+1.19.3
Fabric Enchantments: 0.9.1
This piece of code:
Causes cascading stack errors because it does not copy the output stack it's referencing, it uses it directly. This means that any reference to that stack will be affected by these changes, which is a problem because most smelting recipe outputs are used as a singleton and this code will generate multiple copies of the same stack instance. This leads to issue like stacks not merging correctly when dropped (essentially deleting most of the drops) and recipes failing due to empty outputs.
Steps to Reproduce:
- Enchant a pickaxe with Auto-Smelt
- Give yourself 6 Stone and place them close together
- Mine them until 3 or more drop close enough to merge, reset placements if they don't
- When a large enough merge takes place, pick up the result
- Observe that the resulting stack should be greater than 2 but is only 2
- Observe that placing a Cobblestone in a Furnace is no longer a valid recipe
Edit: For full context, someone else brought this bug to my attention and they reported it on 1.19.2 so this affects that version as well.