No longer combine the traits from the grid to simplify crafting/remove unneeded traits from crafted results

This commit is contained in:
Sollace 2022-09-10 14:57:33 +02:00
parent f10e5965bd
commit f527c08bb6

View file

@ -76,11 +76,7 @@ public class SpellCraftingRecipe implements SpellbookRecipe {
@Override
public ItemStack craft(SpellbookInventory inventory) {
return SpellTraits.union(
SpellTraits.of(inventory.getItemToModify()),
inventory.getTraits(),
SpellTraits.of(output)
).applyTo(output);
return output.copy();
}
@Override