mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 02:12:14 +00:00
OCD
"You have: 1 lives left!"
This commit is contained in:
parent
78a5a4281c
commit
e2284a7bc5
1 changed files with 6 additions and 1 deletions
|
@ -225,7 +225,12 @@ namespace ShiftOS.WinForms.Applications
|
|||
{
|
||||
guessedCharacters = guessedCharacters + charGuessed;
|
||||
lives--;
|
||||
lbllives.Text = "You have: " + lives + " lives left!";
|
||||
if (lives == 1)
|
||||
{
|
||||
lbllives.Text = "You have 1 life left! Be careful...";
|
||||
} else {
|
||||
lbllives.Text = "You have " + lives + " lives left!";
|
||||
}
|
||||
if (lives == 0)
|
||||
{
|
||||
tbguess.Visible = false;
|
||||
|
|
Loading…
Reference in a new issue