From d5678e127cf6ae8f35bf4cfaae41ab28e3c2b95d Mon Sep 17 00:00:00 2001 From: Aren Date: Sat, 25 Feb 2017 14:20:00 +0100 Subject: [PATCH] ShiftLetters now actually gives you codepoints, however, I'd appreciate it if someone else could add more words. --- ShiftOS.WinForms/Applications/ShiftLetters.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ShiftOS.WinForms/Applications/ShiftLetters.cs b/ShiftOS.WinForms/Applications/ShiftLetters.cs index 6e6a43e..19ee79e 100644 --- a/ShiftOS.WinForms/Applications/ShiftLetters.cs +++ b/ShiftOS.WinForms/Applications/ShiftLetters.cs @@ -118,9 +118,9 @@ namespace ShiftOS.WinForms.Applications lives = 0; lbllives.Visible = true; btnrestart.Visible = true; - int cp = word.Length * 2; - cp = cp * oldlives; + long cp = word.Length * oldlives; lbllives.Text = "You earned: " + cp + " codepoints!"; + ShiftOS.Engine.SaveSystem.CurrentSave.Codepoints += cp; } } }