Add Utility Rewrites

This commit is contained in:
Chris 2020-02-04 11:05:28 -05:00 committed by ZaneYork
parent ca0d649148
commit 6a12013752
1 changed files with 6 additions and 0 deletions

View File

@ -16,5 +16,11 @@ namespace StardewModdingAPI.Framework.RewriteFacades
{
return getTrashReclamationPrice(item, player, -1);
}
[SuppressMessage("ReSharper", "CS0109", Justification = "The 'new' modifier applies when compiled on Windows.")]
public static new int getRandomItemFromSeason(string season, int randomSeedAddition, bool forQuest, bool changeDaily = true)
{
return getRandomItemFromSeason(season, randomSeedAddition, forQuest);
}
}
}