Revert "Fixes #219 Potentialy breaking for MT scripts."

This reverts commit f326dbfec9.
This commit is contained in:
Modmuss50 2015-11-13 08:27:02 +00:00
parent a7001bbfd7
commit de1d036b33
10 changed files with 22 additions and 44 deletions

View file

@ -66,10 +66,8 @@ public class MTIndustrialElectrolyzer {
}
@ZenMethod
public static void removeRecipe(IIngredient output) {
for(IItemStack itemStack : output.getItems()){
MineTweakerAPI.apply(new Remove(MinetweakerCompat.toStack(itemStack)));
}
public static void removeRecipe(IItemStack output) {
MineTweakerAPI.apply(new Remove(MinetweakerCompat.toStack(output)));
}
private static class Remove implements IUndoableAction {