[1.15.2] Crystal Merging sometimes merges a crystal with itself
tobi1449 opened this issue ยท 1 comments
In MergeCrystalsRecipe.java, line 99
CrystalAttributes mergeTo = attrOne.getTotalTierLevel() >= attrTwo.getTotalTierLevel() ? attrOne : attrOne;
should be
CrystalAttributes mergeTo = attrOne.getTotalTierLevel() >= attrTwo.getTotalTierLevel() ? attrOne : attrTwo;
Results in sometimes the second crystal being completely overwritten since it just merges the first crystal with itself.