Hey, man
@dbchest found another bug which I have tested on a fresh project. Having more than 2 of the same item cause bugs with transformation, any chance on that getting fixed?
"Item:1 to transform into Item:2 after 5 steps
If you have 1x(Item:1) after 5 steps you will have 1x(Item:2)
If you have 3x(Item:1) after 5 steps you will have (Item:1 + 2x(Item:2))"
Edit: this was my work around
Line 166
var num = Number($gameParty.numItems(currentItem, true));
$gameParty.loseItem(currentItem, num);
if (isMutationSuccess) {
$gameParty.gainItem(nextItem, num);
}