Skip to content

Commit

Permalink
Fixed issues with the new math.
Browse files Browse the repository at this point in the history
  • Loading branch information
RussDev7 authored Jun 25, 2023
1 parent 8c59ea8 commit 89c94d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/CoreKeeperInventoryEditor/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@ private void MainForm_Load(object sender, EventArgs e)
@"// Here we give thanks to those who have helped the project grow!" + Environment.NewLine,
@"// This project would never have grown if not for the following:" + Environment.NewLine + Environment.NewLine,

@"1) ultimaton2 - Most helpful debugger in the projects lifetime." + Environment.NewLine,
@"2) ZeroGravitas - Helped get food tested!" + Environment.NewLine,
@"3) Roupiks - Created assets for all the tabs!" + Environment.NewLine + Environment.NewLine,
@"1) Ultimaton2 - Most helpful debugger in the projects lifetime." + Environment.NewLine,
@"2) Pharuxtan - Helped get the new variaton system working." + Environment.NewLine,
@"3) Roupiks - Created assets for all the tabs!" + Environment.NewLine + Environment.NewLine,

@"Honorable Mentions:" + Environment.NewLine,
@"BourbonCrow, puxxy5layer, Flux, pharuxtan, Iskrownik, Yumiko Abe, Ice, Kremnev8, pharuxtan",
@"BourbonCrow, puxxy5layer, Flux, ZeroGravitas, kremnev8, Iskrownik, Ice, Yumiko Abe, TheBgNaz, Arne, Bosh, Smuke.",
});
#endregion

Expand Down
4 changes: 2 additions & 2 deletions src/CoreKeeperInventoryEditor/VariationHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ public static bool IngredientShouldBePrimary(int ingredient)

public static bool IngredientIsGoldenPlant(int ingredient)
{
if (ingredient >= 8109) // GoldenGrumpkin.
if (ingredient >= 8100 && ingredient <= 8149) // GoldenHeartBerry.
{
return ingredient <= 8150;
return true;
}

return false;
Expand Down

0 comments on commit 89c94d0

Please sign in to comment.