This commit is contained in:
Modmuss50 2015-10-05 11:18:44 +01:00
parent b0c77d4d22
commit 04a21f4dc7
12 changed files with 23 additions and 11 deletions

View file

@ -14,6 +14,7 @@ import techreborn.lib.Reference;
import techreborn.util.CraftingHelper;
import techreborn.util.ItemUtils;
import java.util.ArrayList;
import java.util.List;
/**
@ -85,7 +86,7 @@ public class MTAlloySmelter {
private static class Remove implements IUndoableAction
{
private final ItemStack output;
List<AlloySmelterRecipe> removedRecipes;
List<AlloySmelterRecipe> removedRecipes = new ArrayList<AlloySmelterRecipe>();
public Remove(ItemStack output)
{
this.output = output;