Launching dialog bugfixes & requirement display

This commit is contained in:
Anuken
2020-06-28 11:40:03 -04:00
parent bd274f804a
commit 6386cae19a
5 changed files with 76 additions and 27 deletions

View File

@@ -236,6 +236,10 @@ public class ItemModule extends BlockModule{
for(ItemStack stack : stacks) remove(stack.item, stack.amount);
}
public void remove(Iterable<ItemStack> stacks){
for(ItemStack stack : stacks) remove(stack.item, stack.amount);
}
public void remove(ItemStack stack){
remove(stack.item, stack.amount);
}