mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-02-02 06:17:34 +00:00
ShiftLetters now actually gives you codepoints, however, I'd appreciate it if someone else could add more words.
This commit is contained in:
parent
9cd4ea556b
commit
d5678e127c
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue