Solved Only one type of seasonal forage can be placed on the beach farm each day [Windows]

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.
 
Top