Removed unneeded special splashes.

This commit is contained in:
Bitl 2020-07-03 19:28:44 -07:00
parent 4e52a6a507
commit a57988f33e
2 changed files with 1 additions and 6 deletions

View File

@ -56,6 +56,7 @@ public class ClientInfo
* reshade * reshade
* *
* also change field names for all forms and config read/writes * also change field names for all forms and config read/writes
* replace huge if statements with switch statements
*/ */
public class Config public class Config
{ {

View File

@ -62,16 +62,10 @@ public static class SplashReader
splash = "Happy Birthday, Novetus!"; splash = "Happy Birthday, Novetus!";
} else if (IsTheSameDay(today, new DateTime(today.Year, 10, 9))) { } else if (IsTheSameDay(today, new DateTime(today.Year, 10, 9))) {
splash = "Happy Leif Erikson Day! HINGA DINGA DURGEN!"; splash = "Happy Leif Erikson Day! HINGA DINGA DURGEN!";
} else if (IsTheSameDay(today, new DateTime(today.Year, 10, 10))) {
splash = "I used to wonder what friendship could be!";
} else if (IsTheSameDay(today, new DateTime(today.Year, 4, 20))) { } else if (IsTheSameDay(today, new DateTime(today.Year, 4, 20))) {
splash = "4/20 lol"; splash = "4/20 lol";
} else if (IsTheSameDay(today, new DateTime(today.Year, 4, 27))) {
splash = "fluttershy is best pone";
} else if (IsTheSameDay(today, new DateTime(today.Year, 2, 11))) { } else if (IsTheSameDay(today, new DateTime(today.Year, 2, 11))) {
splash = "RIP Erik Cassel"; splash = "RIP Erik Cassel";
} else if (IsTheSameDay(today, new DateTime(today.Year, 3, 20))) {
splash = " Rip and and tear and plant. Until it is done.";
} else { } else {
splash = RandomSplash(); splash = RandomSplash();
} }