aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-01 15:08:36 -0400
committerMichael <[email protected]>2017-05-01 15:08:36 -0400
commitb71cea249357eeb948f94894970a17078a9c5249 (patch)
treea64cdea294d2bc4134ae5d6a7594496f6ef1d827
parent097afe3dfe6af3ed10753434c1475a8771b4d3c8 (diff)
downloadshiftos_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.cs2
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;