Added experimental package

This commit is contained in:
Anuken
2020-04-16 16:31:43 -04:00
parent 2f3a842f2e
commit 280f3dd428
22 changed files with 3111 additions and 2636 deletions

View File

@@ -161,6 +161,10 @@ public class ItemModule extends BlockModule{
total -= amount;
}
public void remove(ItemStack[] stacks){
for(ItemStack stack : stacks) remove(stack.item, stack.amount);
}
public void remove(ItemStack stack){
remove(stack.item, stack.amount);
}