From ac0fcc6aced8fb8afcf16c110cc29b34810842de Mon Sep 17 00:00:00 2001 From: Michael VanOverbeek Date: Thu, 16 Feb 2017 00:46:33 +0000 Subject: Codepoints are now stored in 64-bit signed ints --- ShiftOS.Server/SaveManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ShiftOS.Server/SaveManager.cs') 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")) { -- cgit v1.2.3