More long codepoints

This commit is contained in:
Michael 2017-02-15 19:49:52 -05:00
parent ac0fcc6ace
commit 337b25e3b3
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ namespace ShiftOS.WinForms
CodepointsRequired = SaveSystem.CurrentSave.Codepoints + amount;
}
public int CodepointsRequired { get; private set; }
public long CodepointsRequired { get; private set; }
public override bool IsComplete
{

View file

@ -195,7 +195,7 @@ namespace ShiftOS.Engine.Scripting
[Exposed("sos")]
public class SystemFunctions
{
public int getCodepoints() { return SaveSystem.CurrentSave.Codepoints; }
public long getCodepoints() { return SaveSystem.CurrentSave.Codepoints; }
public bool runCommand(string cmd)