aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/Commands.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-09 19:33:34 -0400
committerMichael <[email protected]>2017-04-09 19:33:34 -0400
commit700a6a95cf2ca623aa6c0a780d2dc7003f4994f2 (patch)
tree0c336515b0d7b35e4ce098b8fc97d89eb49a4ab7 /ShiftOS_TheReturn/Commands.cs
parent2ac1033c2dcd0e70114ab9ee5c7bd129bff6c1fa (diff)
downloadshiftos_thereturn-700a6a95cf2ca623aa6c0a780d2dc7003f4994f2.tar.gz
shiftos_thereturn-700a6a95cf2ca623aa6c0a780d2dc7003f4994f2.tar.bz2
shiftos_thereturn-700a6a95cf2ca623aa6c0a780d2dc7003f4994f2.zip
Finish the MUD Control Centre story
Diffstat (limited to 'ShiftOS_TheReturn/Commands.cs')
-rw-r--r--ShiftOS_TheReturn/Commands.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/ShiftOS_TheReturn/Commands.cs b/ShiftOS_TheReturn/Commands.cs
index 3cd1640..0257f11 100644
--- a/ShiftOS_TheReturn/Commands.cs
+++ b/ShiftOS_TheReturn/Commands.cs
@@ -480,11 +480,15 @@ namespace ShiftOS.Engine
[Command("status")]
public static bool Status()
{
- Console.WriteLine($@"ShiftOS version {Assembly.GetExecutingAssembly().GetName().Version.ToString()}
+ string status = $@"ShiftOS version {Assembly.GetExecutingAssembly().GetName().Version.ToString()}
Codepoints: {SaveSystem.CurrentSave.Codepoints}
Upgrades: {SaveSystem.CurrentSave.CountUpgrades()} installed,
- {Shiftorium.GetAvailable().Length} available");
+ {Shiftorium.GetAvailable().Length} available";
+
+ if (Shiftorium.UpgradeInstalled("mud_control_centre"))
+ status += Environment.NewLine + $"Reputation: {SaveSystem.CurrentSave.RawReputation} ({SaveSystem.CurrentSave.Reputation})";
+ Console.WriteLine(status);
return true;
}
}