Some stuff that might not live long
This commit is contained in:
parent
1943bdc6a3
commit
6e2676e0c9
2 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
#Mon, 23 Sep 2013 15:00:03 -0400
|
||||
minecraft_version=1.6.4
|
||||
forge_version=9.11.0.891
|
||||
forge_version=9.11.0.898
|
||||
mod_version=pre2a
|
||||
build_number=26
|
||||
|
|
|
@ -11,18 +11,18 @@ import com.pahimar.ee3.core.util.ItemUtil;
|
|||
import com.pahimar.ee3.core.util.OreStack;
|
||||
import com.pahimar.ee3.item.CustomWrappedStack;
|
||||
|
||||
public class CustomWrappedRecipe {
|
||||
public class CondensedRecipe {
|
||||
|
||||
public CustomWrappedStack output;
|
||||
public List<CustomWrappedStack> inputs;
|
||||
|
||||
public CustomWrappedRecipe(Object output, List<?> inputs) {
|
||||
public CondensedRecipe(Object output, List<?> inputs) {
|
||||
|
||||
this.output = new CustomWrappedStack(output);
|
||||
this.inputs = collateInputStacks(inputs);
|
||||
}
|
||||
|
||||
public CustomWrappedRecipe(Object output, Object... inputs) {
|
||||
public CondensedRecipe(Object output, Object... inputs) {
|
||||
|
||||
this(output, Arrays.asList(inputs));
|
||||
}
|
Loading…
Reference in a new issue