diff options
| author | Michael <[email protected]> | 2017-05-01 15:08:36 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-01 15:08:36 -0400 |
| commit | b71cea249357eeb948f94894970a17078a9c5249 (patch) | |
| tree | a64cdea294d2bc4134ae5d6a7594496f6ef1d827 | |
| parent | 097afe3dfe6af3ed10753434c1475a8771b4d3c8 (diff) | |
| download | shiftos_thereturn-b71cea249357eeb948f94894970a17078a9c5249.tar.gz shiftos_thereturn-b71cea249357eeb948f94894970a17078a9c5249.tar.bz2 shiftos_thereturn-b71cea249357eeb948f94894970a17078a9c5249.zip | |
Fix a major OOBE bug.
And to think I was going to quit development because of this.
| -rw-r--r-- | ShiftOS_TheReturn/TerminalBackend.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS_TheReturn/TerminalBackend.cs b/ShiftOS_TheReturn/TerminalBackend.cs index 3bfdeff..6911feb 100644 --- a/ShiftOS_TheReturn/TerminalBackend.cs +++ b/ShiftOS_TheReturn/TerminalBackend.cs @@ -395,7 +395,7 @@ namespace ShiftOS.Engine } public static void PrintPrompt() { - if (SaveSystem.CurrentSave != null) + if (SaveSystem.CurrentSave != null && CurrentUser != null) { ConsoleEx.BackgroundColor = SkinEngine.LoadedSkin.TerminalBackColorCC; ConsoleEx.Italic = false; |
