diff --git a/EXILED/Exiled.Loader/Features/LoaderMessages.cs b/EXILED/Exiled.Loader/Features/LoaderMessages.cs
index f53aac3870..a1834e35ea 100644
--- a/EXILED/Exiled.Loader/Features/LoaderMessages.cs
+++ b/EXILED/Exiled.Loader/Features/LoaderMessages.cs
@@ -29,7 +29,7 @@ public static class LoaderMessages
▀ ";
///
- /// Gets the easter egg loader message.
+ /// Gets the Easter egg loader message.
///
public static string EasterEgg => @"
▄████████ ▄████████ ▀████ ▐████▀ ▄█ ▄█ ▄████████ ████████▄
@@ -43,7 +43,7 @@ public static class LoaderMessages
";
///
- /// Gets the christmas loader message.
+ /// Gets the Christmas loader message.
///
public static string Christmas => @"
__
@@ -60,7 +60,7 @@ public static class LoaderMessages
|____)_)";
///
- /// Gets the halloween loader message.
+ /// Gets the Halloween loader message.
///
public static string Halloween => @"
@@@@@@@@ @@@ @@@ @@@ @@@ @@@@@@@@ @@@@@@@
@@ -81,7 +81,10 @@ @@@@@@@@ @@@ @@@ @@@ @@@ @@@@@@@@ @@@@@@@@
/// The correspondent loader message.
public static string GetMessage()
{
- if (Loader.Version.ToString().Contains("6.9") || Loader.Random.NextDouble() <= 0.069)
+ if (Environment.GetCommandLineArgs().Contains("--defaultloadmessage"))
+ return Default;
+
+ if (!Environment.GetCommandLineArgs().Contains("--noeasteregg") && (Loader.Version.ToString().Contains("6.9") || Loader.Random.NextDouble() <= 0.069))
return EasterEgg;
return DateTime.Today.Month switch