aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn/Commands.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-05-04 19:01:03 -0600
committerAShifter <[email protected]>2017-05-04 19:01:03 -0600
commit13b35b32c2c429e6bd2d7b41ca43cc62f305dbc5 (patch)
treedbc42661444f813cf04f7af2fdfecb94d5b78044 /ShiftOS_TheReturn/Commands.cs
parent2fede89938014129cf50d66d5ff62af1bde4a477 (diff)
parenta57b5855f5a2b7e5f89e411a5cbe66dd0dcb50d6 (diff)
downloadshiftos_thereturn-13b35b32c2c429e6bd2d7b41ca43cc62f305dbc5.tar.gz
shiftos_thereturn-13b35b32c2c429e6bd2d7b41ca43cc62f305dbc5.tar.bz2
shiftos_thereturn-13b35b32c2c429e6bd2d7b41ca43cc62f305dbc5.zip
Merge remote-tracking branch 'refs/remotes/shiftos-game/master'
Diffstat (limited to 'ShiftOS_TheReturn/Commands.cs')
-rw-r--r--ShiftOS_TheReturn/Commands.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS_TheReturn/Commands.cs b/ShiftOS_TheReturn/Commands.cs
index 87aacd6..57d1d34 100644
--- a/ShiftOS_TheReturn/Commands.cs
+++ b/ShiftOS_TheReturn/Commands.cs
@@ -283,7 +283,7 @@ namespace ShiftOS.Engine
if (args.ContainsKey("amount"))
try
{
- int codepointsToAdd = Convert.ToInt32(args["amount"].ToString());
+ Int64 codepointsToAdd = Convert.ToInt64(args["amount"].ToString());
SaveSystem.TransferCodepointsFrom("dev", codepointsToAdd);
return true;
}