Added Universal Cell

This commit is contained in:
modmuss50 2016-05-17 21:12:33 +01:00
parent 9035f2a21c
commit e38c800f21
13 changed files with 179 additions and 24 deletions

View file

@ -1,7 +1,7 @@
package techreborn.utils;
import net.minecraft.item.ItemStack;
import techreborn.items.ItemCells;
import techreborn.init.ModItems;
public class RecipeUtils
{
@ -12,7 +12,7 @@ public class RecipeUtils
// cell.stackSize = stackSize;
// return cell;
// } else {
return ItemCells.getCellByName("empty", stackSize);
return new ItemStack(ModItems.emptyCell);
// }
}
}