Removed OLD textures
Added texture for uu Added 1st uu recipe Added configs
This commit is contained in:
parent
18c2ec19cf
commit
26b60d2896
65 changed files with 74 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
package techreborn.init;
|
||||
|
||||
import codechicken.nei.api.API;
|
||||
import ic2.api.item.IC2Items;
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.init.Items;
|
||||
|
@ -23,6 +24,7 @@ public class ModRecipes {
|
|||
addShappedRecipes();
|
||||
addSmeltingRecipes();
|
||||
addMachineRecipes();
|
||||
addUUrecipes();
|
||||
}
|
||||
|
||||
public static void removeIc2Recipes()
|
||||
|
@ -284,5 +286,25 @@ public class ModRecipes {
|
|||
TechRebornAPI.registerBlastFurnaceRecipe(new BlastFurnaceRecipe(new ItemStack(Items.apple), new ItemStack(Items.ender_pearl), new ItemStack(Items.golden_apple), new ItemStack(Items.diamond), 120, 1000));
|
||||
LogHelper.info("Machine Recipes Added");
|
||||
}
|
||||
|
||||
public static void addUUrecipes()
|
||||
{
|
||||
if(config.UUrecipesIridiamOre);
|
||||
CraftingHelper.addShapedOreRecipe((IC2Items.getItem("iridiumOre")),
|
||||
new Object[]
|
||||
{
|
||||
"III", " I ", "III",
|
||||
'I', ModItems.uuMatter
|
||||
});
|
||||
|
||||
if(config.HideUuRecipes);
|
||||
hideUUrecipes();
|
||||
|
||||
}
|
||||
|
||||
public static void hideUUrecipes()
|
||||
{
|
||||
//TODO
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue