TechReborn/src/main/java/techreborn/utils/RecipeUtils.java

19 lines
407 B
Java
Raw Normal View History

2015-11-08 13:15:45 +01:00
package techreborn.utils;
2015-09-23 18:27:41 +02:00
import net.minecraft.item.ItemStack;
2016-05-17 22:12:33 +02:00
import techreborn.init.ModItems;
2015-09-23 18:27:41 +02:00
2016-03-25 10:47:34 +01:00
public class RecipeUtils
{
public static ItemStack getEmptyCell(int stackSize)
{ // TODO ic2
// if (Loader.isModLoaded("IC2")) {
// ItemStack cell = IC2Items.getItem("cell").copy();
// cell.stackSize = stackSize;
// return cell;
// } else {
2016-05-17 22:12:33 +02:00
return new ItemStack(ModItems.emptyCell);
2016-03-25 10:47:34 +01:00
// }
}
2015-09-23 18:27:41 +02:00
}