mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2024-12-25 21:59:30 +01:00
Fix a typo, causing a wrong error message to be displayed
This commit is contained in:
parent
e51d2f9a23
commit
d3c9c504ba
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ void PlayerWidget::pass(QString inputLetters)
|
|||
msg = msg.arg(_q("The rack of the current player does not contain all the listed letters"));
|
||||
else if (res == 3)
|
||||
msg = msg.arg(_q("The game is already finished!"));
|
||||
else if (res == 3)
|
||||
else if (res == 4)
|
||||
msg = msg.arg(_q("Some letters are invalid for the current dictionary"));
|
||||
else
|
||||
msg = msg.arg(_q("Unknown error"));
|
||||
|
|
Loading…
Reference in a new issue