diff options
| author | Michael VanOverbeek <[email protected]> | 2017-02-16 00:46:33 +0000 |
|---|---|---|
| committer | Michael VanOverbeek <[email protected]> | 2017-02-16 00:46:33 +0000 |
| commit | ac0fcc6aced8fb8afcf16c110cc29b34810842de (patch) | |
| tree | 1a9ce13297872ed4fa42c26114809789443a3a3d /ShiftOS.Objects/Save.cs | |
| parent | 88194888fd8b654de583b52121f21ba32542e5c9 (diff) | |
| download | shiftos_thereturn-ac0fcc6aced8fb8afcf16c110cc29b34810842de.tar.gz shiftos_thereturn-ac0fcc6aced8fb8afcf16c110cc29b34810842de.tar.bz2 shiftos_thereturn-ac0fcc6aced8fb8afcf16c110cc29b34810842de.zip | |
Codepoints are now stored in 64-bit signed ints
Diffstat (limited to 'ShiftOS.Objects/Save.cs')
| -rw-r--r-- | ShiftOS.Objects/Save.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.Objects/Save.cs b/ShiftOS.Objects/Save.cs index a901a92..b0dcc03 100644 --- a/ShiftOS.Objects/Save.cs +++ b/ShiftOS.Objects/Save.cs @@ -11,7 +11,7 @@ namespace ShiftOS.Objects public class Save { public string Username { get; set; } - public int Codepoints { get; set; } + public long Codepoints { get; set; } public Dictionary<string, bool> Upgrades { get; set; } public int StoryPosition { get; set; } public string Language { get; set; } |
