aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/ServerManager.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-09 16:14:35 -0500
committerMichael <[email protected]>2017-03-09 16:14:35 -0500
commit3f08cb807c1490af423450e3eb03a46aa11caf2f (patch)
tree38ec804cae9d1106f78074eea4b926f3204fd8f9 /ShiftOS_TheReturn/ServerManager.cs
parentd9b4e79bcffea6139fadefcd95a020029941eda7 (diff)
downloadshiftos_thereturn-3f08cb807c1490af423450e3eb03a46aa11caf2f.tar.gz
shiftos_thereturn-3f08cb807c1490af423450e3eb03a46aa11caf2f.tar.bz2
shiftos_thereturn-3f08cb807c1490af423450e3eb03a46aa11caf2f.zip
Colored terminal text
Diffstat (limited to 'ShiftOS_TheReturn/ServerManager.cs')
-rw-r--r--ShiftOS_TheReturn/ServerManager.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ShiftOS_TheReturn/ServerManager.cs b/ShiftOS_TheReturn/ServerManager.cs
index a121ab6..7da09f1 100644
--- a/ShiftOS_TheReturn/ServerManager.cs
+++ b/ShiftOS_TheReturn/ServerManager.cs
@@ -154,7 +154,9 @@ namespace ShiftOS.Engine
{
var ex = JsonConvert.DeserializeObject<Exception>(msg.Contents);
TerminalBackend.PrefixEnabled = true;
+ ConsoleEx.ForegroundColor = ConsoleColor.DarkYellow;
Console.WriteLine($@"{{MUD_ERROR}}: {ex.Message}");
+ ConsoleEx.ForegroundColor = ConsoleColor.White;
TerminalBackend.PrefixEnabled = true;
Console.Write($"{SaveSystem.CurrentSave.Username}@{CurrentSave.SystemName}:~$ ");
}