Repairing chisel in 2x2 crafting grid duplicates the chisel.
codewarrior0 opened this issue ยท 6 comments
Probably because the chisel returns itself to inventory when using chisel recipes. Not sure how to fix it, only workaround is to repair in tool stations.
I suppose I could. I just don't see it as a big issue because.. it's only a chisel. ;o
If I understand the problem correctly, you can actually fix this easily using Forge events. Use PlayerEvent.ItemCraftedEvent and check for the chisel as the output, and if it is, decrease the stacksize of the input chisel or set it to null.
Oh, good idea. Only solution I found was the crafting handler, but there I can't do that because it'd reduce it before it's pulled out.