Update SplashLoader.cs

This commit is contained in:
Bitl 2021-10-29 14:17:21 -07:00
parent 15a72ea7e6
commit 4d1267aff4
1 changed files with 2 additions and 2 deletions

View File

@ -319,9 +319,9 @@ public static class SplashReader
{
Splash splash = GetSpecialSplash();
CryptoRandom random = new CryptoRandom();
int randchance = random.Next(1, 10);
int randchance = random.Next(1, 5);
if (splash.SplashText == "missingno" || randchance == 10)
if (splash.SplashText == "missingno" || randchance == 5)
{
splash = RandomSplash();
}