Make "Sometimes" setting depend on season end date, rather than chance

This commit is contained in:
Max Hübner
2020-10-30 10:27:43 +01:00
parent fb1e09b3e7
commit f27ce7521d
4 changed files with 17 additions and 2 deletions

View File

@ -109,7 +109,7 @@ namespace osu.Game.Screens.Backgrounds
switch (showSeasonalBackgrounds.Value)
{
case SeasonalBackgrounds.Sometimes:
if (RNG.NextBool())
if (seasonalBackgroundLoader.IsInSeason())
goto case SeasonalBackgrounds.Always;
break;