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 @Override
public ItemStack craft(SpellbookInventory inventory) { public ItemStack craft(SpellbookInventory inventory) {
return SpellTraits.union( return output.copy();
SpellTraits.of(inventory.getItemToModify()),
inventory.getTraits(),
SpellTraits.of(output)
).applyTo(output);
} }
@Override @Override