diff options
| author | Michael <[email protected]> | 2017-07-13 08:40:47 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-07-13 08:40:47 -0400 |
| commit | e92af1bc7fe5cd5860206061f4ff261b3339cc51 (patch) | |
| tree | 14b571e2495731d7302b61c56d18ae5e4988587e /ShiftOS.Objects | |
| parent | af01804c0fb4286f5975e973aec2b4eaf9752c08 (diff) | |
| download | shiftos_thereturn-e92af1bc7fe5cd5860206061f4ff261b3339cc51.tar.gz shiftos_thereturn-e92af1bc7fe5cd5860206061f4ff261b3339cc51.tar.bz2 shiftos_thereturn-e92af1bc7fe5cd5860206061f4ff261b3339cc51.zip | |
SidePanel system, system status, crapton of other neat things
Diffstat (limited to 'ShiftOS.Objects')
| -rw-r--r-- | ShiftOS.Objects/Save.cs | 44 |
1 files changed, 1 insertions, 43 deletions
diff --git a/ShiftOS.Objects/Save.cs b/ShiftOS.Objects/Save.cs index c6a7f61..f499091 100644 --- a/ShiftOS.Objects/Save.cs +++ b/ShiftOS.Objects/Save.cs @@ -39,8 +39,7 @@ namespace ShiftOS.Objects public bool SoundEnabled = true; public int MusicVolume = 100; - [Obsolete("This save variable is no longer used in Beta 2.4 and above of ShiftOS. Please use ShiftOS.Engine.SaveSystem.CurrentUser.Username to access the current user's username.")] - public string Username { get; set; } + public string Username = "user"; public bool IsSandbox = false; @@ -49,48 +48,9 @@ namespace ShiftOS.Objects public Dictionary<string, bool> Upgrades { get; set; } public int StoryPosition { get; set; } public string Language { get; set; } - public string MyShop { get; set; } - public List<string> CurrentLegions { get; set; } - public int MajorVersion { get; set; } - public int MinorVersion { get; set; } - public int Revision { get; set; } - - public string UniteAuthToken { get; set; } - - public bool IsPatreon { get; set; } - - public UserClass Class { get; set; } - public double RawReputation { get; set; } - - public Reputation Reputation - { - get - { - return (Reputation)((int)Math.Round(RawReputation)); - } - } - - public string Password { get; set; } - public bool PasswordHashed { get; set; } public string SystemName { get; set; } - - private dynamic _settings = new SettingsObject(); - public int ShiftnetSubscription { get; set; } - public Guid ID { get; set; } - - public bool IsMUDAdmin { get; set; } - - public dynamic Settings - { - get - { - return _settings; - } - } - - public int LastMonthPaid { get; set; } public List<string> StoriesExperienced { get; set; } public int CountUpgrades() @@ -104,8 +64,6 @@ namespace ShiftOS.Objects return count; } - public List<ClientSave> Users { get; set; } - /// <summary> /// DO NOT MODIFY THIS. EVER. YOU WILL BREAK THE STORYLINE. Let the engine do it's job. /// </summary> |
