From 337b25e3b35bfb5176d36d11166f7ba64e19d9af Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 15 Feb 2017 19:49:52 -0500 Subject: [PATCH] More long codepoints --- ShiftOS.WinForms/JobTasks.cs | 2 +- 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)