diff --git a/GeneralMods/Revitalize/Framework/Crafting/CraftingRecipeBook.cs b/GeneralMods/Revitalize/Framework/Crafting/CraftingRecipeBook.cs index 4424562a..7cbf20eb 100644 --- a/GeneralMods/Revitalize/Framework/Crafting/CraftingRecipeBook.cs +++ b/GeneralMods/Revitalize/Framework/Crafting/CraftingRecipeBook.cs @@ -516,12 +516,20 @@ namespace Revitalize.Framework.Crafting AnvilRecipes.addCraftingRecipe("LightHouse", new UnlockableCraftingRecipe("Default", new Recipe(new List() { - new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.IronBar,5),45), + new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.IronBar,5),5), new CraftingRecipeComponent(ModCore.ObjectManager.resources.getResource("Glass"),5), new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.Wood,10), 10) }, new CraftingRecipeComponent(ModCore.ObjectManager.GetItem("Lighthouse"), 1)), true)); + AnvilRecipes.addCraftingRecipe("Grinder", new UnlockableCraftingRecipe("Default", new Recipe(new List() + { + new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.IronBar,10),10), + new CraftingRecipeComponent(ModCore.ObjectManager.GetItem("SteelIngot"),30), + new CraftingRecipeComponent(new StardewValley.Object((int)Enums.SDVObject.CopperBar,10), 10), + new CraftingRecipeComponent(new StardewValley.Objects.Chest(true),1) + }, new CraftingRecipeComponent(ModCore.ObjectManager.GetItem("Grinder"), 1)), true));; + if (CraftingRecipesByGroup.ContainsKey(AnvilRecipes.craftingGroup)) {