BlaDe
Farmer
When determining whether to place seasonal forage on the beach farm, the game calls Utility.getRandomBasicSeasonalForageItem. This method creates a random like this:
Random random = CreateRandom(Game1.uniqueIDForThisGame, randomSeedAddition);
daysPlayed is passed in for randomSeedAddition, so on the same day this method will always return the same seasonal forage.
Random random = CreateRandom(Game1.uniqueIDForThisGame, randomSeedAddition);
daysPlayed is passed in for randomSeedAddition, so on the same day this method will always return the same seasonal forage.