aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/Save.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-02 11:38:38 -0400
committerMichael <[email protected]>2017-06-02 11:38:38 -0400
commit11e80a6a6134e2cbee1041d6ddc95781a265bead (patch)
tree033f8d78a4e40986849e4d6be11f10e04d4c2c7e /ShiftOS.Objects/Save.cs
parentbae2c837573d01ee4c8e6548a3ebd2a3df8f054d (diff)
downloadshiftos_thereturn-11e80a6a6134e2cbee1041d6ddc95781a265bead.tar.gz
shiftos_thereturn-11e80a6a6134e2cbee1041d6ddc95781a265bead.tar.bz2
shiftos_thereturn-11e80a6a6134e2cbee1041d6ddc95781a265bead.zip
fix the audio system
Diffstat (limited to 'ShiftOS.Objects/Save.cs')
-rw-r--r--ShiftOS.Objects/Save.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ShiftOS.Objects/Save.cs b/ShiftOS.Objects/Save.cs
index 0fef7b3..cbd77e2 100644
--- a/ShiftOS.Objects/Save.cs
+++ b/ShiftOS.Objects/Save.cs
@@ -34,9 +34,9 @@ namespace ShiftOS.Objects
//Better to store this stuff server-side so we can do some neat stuff with hacking...
public class Save
{
-
- public int MusicVolume { get; set; }
- public int SfxVolume { get; set; }
+ public bool MusicEnabled = true;
+ 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; }