did something to get more codepoints

This commit is contained in:
Rylan/wowmom98 2017-05-02 22:12:00 -04:00
parent 8381c825b1
commit 3488ac86fb

View file

@ -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;
}