diff options
| author | Michael <[email protected]> | 2017-02-15 19:49:52 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-02-15 19:49:52 -0500 |
| commit | 337b25e3b35bfb5176d36d11166f7ba64e19d9af (patch) | |
| tree | f85d5d28c8ecde43b0af903fa8f8ae62a5fc36f2 | |
| parent | ac0fcc6aced8fb8afcf16c110cc29b34810842de (diff) | |
| download | shiftos_thereturn-337b25e3b35bfb5176d36d11166f7ba64e19d9af.tar.gz shiftos_thereturn-337b25e3b35bfb5176d36d11166f7ba64e19d9af.tar.bz2 shiftos_thereturn-337b25e3b35bfb5176d36d11166f7ba64e19d9af.zip | |
More long codepoints
| -rw-r--r-- | ShiftOS.WinForms/JobTasks.cs | 2 | ||||
| -rw-r--r-- | ShiftOS_TheReturn/Scripting.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/JobTasks.cs b/ShiftOS.WinForms/JobTasks.cs index 77917d9..b3f6683 100644 --- a/ShiftOS.WinForms/JobTasks.cs +++ b/ShiftOS.WinForms/JobTasks.cs @@ -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 { diff --git a/ShiftOS_TheReturn/Scripting.cs b/ShiftOS_TheReturn/Scripting.cs index 1bb48d5..246852f 100644 --- a/ShiftOS_TheReturn/Scripting.cs +++ b/ShiftOS_TheReturn/Scripting.cs @@ -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) |
