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.Server/SaveManager.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.Server/SaveManager.cs')
| -rw-r--r-- | ShiftOS.Server/SaveManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.Server/SaveManager.cs b/ShiftOS.Server/SaveManager.cs index fcca2bb..d52d32a 100644 --- a/ShiftOS.Server/SaveManager.cs +++ b/ShiftOS.Server/SaveManager.cs @@ -146,7 +146,7 @@ namespace ShiftOS.Server if (args["username"] != null && args["amount"] != null) { string userName = args["username"] as string; - int cpAmount = (int)args["amount"]; + long cpAmount = (long)args["amount"]; if (Directory.Exists("saves")) { |
