aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/Save.cs
diff options
context:
space:
mode:
authorMichael VanOverbeek <[email protected]>2017-02-16 00:46:33 +0000
committerMichael VanOverbeek <[email protected]>2017-02-16 00:46:33 +0000
commitac0fcc6aced8fb8afcf16c110cc29b34810842de (patch)
tree1a9ce13297872ed4fa42c26114809789443a3a3d /ShiftOS.Objects/Save.cs
parent88194888fd8b654de583b52121f21ba32542e5c9 (diff)
downloadshiftos_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.cs2
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; }