mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fixed combination recipe accepting more than one ingredient
This commit is contained in:
parent
afcd59206c
commit
ed08cb27ab
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ public abstract class ItemCombinationRecipe extends SpecialCraftingRecipe {
|
|||
|
||||
bangle = stack;
|
||||
} else {
|
||||
if (!isInsertItem(stack)) {
|
||||
if (!dust.isEmpty() || !isInsertItem(stack)) {
|
||||
return new Pair<>(bangle, dust);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue