diff options
Diffstat (limited to 'ShiftOS.Server')
| -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")) { |
