diff --git a/ShiftOS.WinForms/Resources/strings_en.txt b/ShiftOS.WinForms/Resources/strings_en.txt index 9e17f11..55402ab 100644 --- a/ShiftOS.WinForms/Resources/strings_en.txt +++ b/ShiftOS.WinForms/Resources/strings_en.txt @@ -235,6 +235,7 @@ "{LOADINGMSG2_7}": "[systemd] There's no antidote...", "{LOADINGMSG2_8}": "[systemd] Can I at least have a muffin?", "{LOADINGMSG2_9}": "[systemd] System initiated, but I still want a cake.", + "{LOADINGMSG2_10}": "[sysvinit] Your init system has been upgraded.", //Format editor "{FORMATEDITOR_COMMAND_LOWER}": "command", diff --git a/ShiftOS_TheReturn/SaveSystem.cs b/ShiftOS_TheReturn/SaveSystem.cs index 8cd4d9b..8cfea4a 100644 --- a/ShiftOS_TheReturn/SaveSystem.cs +++ b/ShiftOS_TheReturn/SaveSystem.cs @@ -107,7 +107,7 @@ namespace ShiftOS.Engine SkinEngine.Init(); Random rnd = new Random(); int loadingJoke1 = rnd.Next(10); - int loadingJoke2 = rnd.Next(10); + int loadingJoke2 = rnd.Next(11); TerminalBackend.OpenTerminal();