mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 23:27:59 +01:00
No longer combine the traits from the grid to simplify crafting/remove unneeded traits from crafted results
This commit is contained in:
parent
f10e5965bd
commit
f527c08bb6
1 changed files with 1 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue