fixes #189
This commit is contained in:
parent
cd32fe255c
commit
cae4aad955
3 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@ public class MTCentrifuge {
|
|||
public void apply()
|
||||
{
|
||||
for(IBaseRecipeType recipeType : RecipeHandler.getRecipeClassFromName(Reference.centrifugeRecipe)){
|
||||
for(ItemStack stack : recipeType.getOutputs()){
|
||||
for(ItemStack stack : recipeType.getInputs()){//TODO might not be the right way to do this
|
||||
if(ItemUtils.isItemEqual(stack, output, true, false)){
|
||||
removedRecipes.add((CentrifugeRecipe) recipeType);
|
||||
RecipeHandler.recipeList.remove(recipeType);
|
||||
|
|
|
@ -438,7 +438,7 @@ public class RecipesIC2 implements ICompatModule {
|
|||
//Lava Cell Byproducts
|
||||
ItemStack lavaCells = IC2Items.getItem("lavaCell");
|
||||
lavaCells.stackSize = 8;
|
||||
RecipeHandler.addRecipe(new CentrifugeRecipe(lavaCells, null, ItemNuggets.getNuggetByName("electrum", 4), ItemIngots.getIngotByName("copper", 2), ItemDustsSmall.getSmallDustByName("Tungsten", 1), ItemIngots.getIngotByName("tin", 17), 6000, 5));
|
||||
RecipeHandler.addRecipe(new CentrifugeRecipe(lavaCells, null, ItemNuggets.getNuggetByName("electrum", 4), ItemIngots.getIngotByName("copper", 2), ItemDustsSmall.getSmallDustByName("Tungsten", 1), ItemIngots.getIngotByName("tin", 2), 6000, 5));
|
||||
|
||||
//IndustrialGrinderRecipes
|
||||
RecipeHandler.addRecipe(new GrinderRecipe(new ItemStack(Blocks.coal_ore, 1), IC2Items.getItem("waterCell"), null, new ItemStack(Items.coal, 1), ItemDustsSmall.getSmallDustByName("Coal", 6), ItemDustsSmall.getSmallDustByName("Coal", 2), IC2Items.getItem("cell"), 100, 120));
|
||||
|
|
|
@ -430,7 +430,7 @@ public class RecipesIC2Classic implements ICompatModule {
|
|||
//Lava Cell Byproducts
|
||||
ItemStack lavaCells = IC2Items.getItem("lavaCell");
|
||||
lavaCells.stackSize = 8;
|
||||
RecipeHandler.addRecipe(new CentrifugeRecipe(lavaCells, null, ItemNuggets.getNuggetByName("electrum", 4), ItemIngots.getIngotByName("copper", 2), ItemDustsSmall.getSmallDustByName("Tungsten", 1), ItemIngots.getIngotByName("tin", 17), 6000, 5));
|
||||
RecipeHandler.addRecipe(new CentrifugeRecipe(lavaCells, null, ItemNuggets.getNuggetByName("electrum", 4), ItemIngots.getIngotByName("copper", 2), ItemDustsSmall.getSmallDustByName("Tungsten", 1), ItemIngots.getIngotByName("tin", 2), 6000, 5));
|
||||
|
||||
//IndustrialGrinderRecipes
|
||||
RecipeHandler.addRecipe(new GrinderRecipe(new ItemStack(Blocks.coal_ore, 1), IC2Items.getItem("waterCell"), null, new ItemStack(Items.coal, 1), ItemDustsSmall.getSmallDustByName("Coal", 6), ItemDustsSmall.getSmallDustByName("Coal", 2), IC2Items.getItem("cell"), 100, 120));
|
||||
|
|
Loading…
Reference in a new issue