Fixes #1601: Do not allow 0 as stacksize for recipes
This commit is contained in:
@@ -23,6 +23,7 @@ import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
import appeng.api.recipes.ICraftHandler;
|
||||
@@ -31,10 +32,10 @@ import appeng.api.recipes.ICraftHandler;
|
||||
public class RecipeData
|
||||
{
|
||||
|
||||
public final HashMap<String, String> aliases = new HashMap<String, String>();
|
||||
public final HashMap<String, GroupIngredient> groups = new HashMap<String, GroupIngredient>();
|
||||
public final Map<String, String> aliases = new HashMap<String, String>();
|
||||
public final Map<String, GroupIngredient> groups = new HashMap<String, GroupIngredient>();
|
||||
|
||||
public final List<ICraftHandler> Handlers = new LinkedList<ICraftHandler>();
|
||||
public final List<ICraftHandler> handlers = new LinkedList<ICraftHandler>();
|
||||
public final Set<String> knownItem = new HashSet<String>();
|
||||
public boolean crash = true;
|
||||
public boolean exceptions = true;
|
||||
|
||||
Reference in New Issue
Block a user