Added License, and tried to add crafting recipes.

This commit is contained in:
Zachary Daltorio
2013-10-04 12:06:52 -04:00
parent 6d6ac376a9
commit ba61c7c24a
3 changed files with 679 additions and 3 deletions

View File

@@ -22,7 +22,8 @@ public static Achievement ShadowWarrior;
public static AchievementPage Divine_Equipment = new AchievementPage("Divine Equipment", HollowBeThyName, ChildOfTheDamned, EndersGame, FallenOne, Redemption, ShadowWarrior);
// Crafting Recipes
void addCraftingRecipes()
{
ItemStack quartzStack = new ItemStack(Item.netherQuartz);
ItemStack goldStack = new ItemStack(Item.ingotGold);
ItemStack eyeStack = new ItemStack(Item.eyeOfEnder);
@@ -31,3 +32,4 @@ ItemStack stoneStack = new ItemStack(Block.stone);
}
}

View File

@@ -50,8 +50,8 @@ public class Divine_Equipment
@Mod.EventHandler
public void preInit(FMLPreInitializationEvent event){
content = new Divine_Content();
crafting = new Divine_Crafting();
addCraftingRecipes = new Divine_Crafting();
}
public static Divine_Content content;
public static Divine_Crafting crafting;
public static Divine_Crafting addCraftingRecipes;
}