ShiftLetters now actually gives you codepoints, however, I'd appreciate it if someone else could add more words.

This commit is contained in:
Aren 2017-02-25 14:20:00 +01:00
parent 9cd4ea556b
commit d5678e127c

View file

@ -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;
}
}
}