diff options
| author | Rylan/wowmom98 <[email protected]> | 2017-06-12 21:52:38 -0400 |
|---|---|---|
| committer | Rylan/wowmom98 <[email protected]> | 2017-06-12 21:52:38 -0400 |
| commit | d1538e742bf075c680d7f6a42b0ad5583a18d379 (patch) | |
| tree | 6f344a06d7711f1b249be44b9a8992408155d1f1 | |
| parent | 388835c96a1ace2fc8f317ecb10981da76aeac05 (diff) | |
| download | shiftos_thereturn-d1538e742bf075c680d7f6a42b0ad5583a18d379.tar.gz shiftos_thereturn-d1538e742bf075c680d7f6a42b0ad5583a18d379.tar.bz2 shiftos_thereturn-d1538e742bf075c680d7f6a42b0ad5583a18d379.zip | |
Loading joke thing
| -rw-r--r-- | ShiftOS_TheReturn/SaveSystem.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/SaveSystem.cs b/ShiftOS_TheReturn/SaveSystem.cs index a3a992c..b35277b 100644 --- a/ShiftOS_TheReturn/SaveSystem.cs +++ b/ShiftOS_TheReturn/SaveSystem.cs @@ -79,6 +79,7 @@ namespace ShiftOS.Engine /// </summary> public static Save CurrentSave { get; set; } + /// <summary> /// Start the entire ShiftOS engine. /// </summary> @@ -104,6 +105,8 @@ namespace ShiftOS.Engine Localization.SetupTHETRUEDefaultLocals(); SkinEngine.Init(); + Random rnd = new Random(); + int loadingJoke1 = rnd.Next(5); TerminalBackend.OpenTerminal(); @@ -138,7 +141,19 @@ namespace ShiftOS.Engine Console.WriteLine("[sfs] Loading SFS driver v3"); Thread.Sleep(100); Console.WriteLine("[sfs] 4096 blocks read."); + if (loadingJoke1 == 0) + Console.WriteLine("[sos] Getting good and ready..."); + if (loadingJoke1 == 1) + Console.WriteLine("[sos] Shifting the OS..."); + if (loadingJoke1 == 2) + Console.WriteLine("[sos] Placing things everywhere..."); + if (loadingJoke1 == 3) + Console.WriteLine("[sos] Making an an errors..."); + if (loadingJoke1 == 4) + Console.WriteLine("[sos] Testing to see if this OS is indeed on..."); + Thread.Sleep(50); Console.WriteLine("[simpl-conf] Reading configuration files (global-3.conf)"); + Thread.Sleep(20); Console.WriteLine("[termdb] Building command database from filesystem..."); TerminalBackend.PopulateTerminalCommands(); |
