aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ShiftOS.WinForms/JobTasks.cs2
-rw-r--r--ShiftOS_TheReturn/Scripting.cs2
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)