Some stuff that might not live long

This commit is contained in:
pahimar 2013-09-29 12:38:44 -04:00
parent 1943bdc6a3
commit 6e2676e0c9
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
#Mon, 23 Sep 2013 15:00:03 -0400 #Mon, 23 Sep 2013 15:00:03 -0400
minecraft_version=1.6.4 minecraft_version=1.6.4
forge_version=9.11.0.891 forge_version=9.11.0.898
mod_version=pre2a mod_version=pre2a
build_number=26 build_number=26

View file

@ -11,18 +11,18 @@ import com.pahimar.ee3.core.util.ItemUtil;
import com.pahimar.ee3.core.util.OreStack; import com.pahimar.ee3.core.util.OreStack;
import com.pahimar.ee3.item.CustomWrappedStack; import com.pahimar.ee3.item.CustomWrappedStack;
public class CustomWrappedRecipe { public class CondensedRecipe {
public CustomWrappedStack output; public CustomWrappedStack output;
public List<CustomWrappedStack> inputs; public List<CustomWrappedStack> inputs;
public CustomWrappedRecipe(Object output, List<?> inputs) { public CondensedRecipe(Object output, List<?> inputs) {
this.output = new CustomWrappedStack(output); this.output = new CustomWrappedStack(output);
this.inputs = collateInputStacks(inputs); this.inputs = collateInputStacks(inputs);
} }
public CustomWrappedRecipe(Object output, Object... inputs) { public CondensedRecipe(Object output, Object... inputs) {
this(output, Arrays.asList(inputs)); this(output, Arrays.asList(inputs));
} }