Skip to content

Commit

Permalink
Bugfix for magic elixir
Browse files Browse the repository at this point in the history
  • Loading branch information
Albrekka committed Jan 20, 2024
1 parent d287ea8 commit a5d0b5e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions StardewArchipelago/ModEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,10 @@ private void DoBugsCleanup()
Game1.player.cookingRecipes.Remove("Lucky Lunch");
}
}
if (_archipelago.HasReceivedItem("Magic Elixir Recipe") & !Game1.player.cookingRecipes.ContainsKey("Magic Elixir"))
{
Game1.player.cookingRecipes.Add("Magic Elixir", 0); // Its a cooking recipe.
}
// Fix to remove dupes in Railroad Boulder
if (!_archipelago.SlotData.Mods.HasMod(ModNames.SVE))
{
Expand Down

0 comments on commit a5d0b5e

Please sign in to comment.