Fix state name in guess message
This commit is contained in:
parent
668a5e3dd0
commit
4c7c98bba0
|
@ -194,7 +194,7 @@
|
|||
|
||||
if (!city.guessed) {
|
||||
city.guessed = true;
|
||||
this.message = `${city.name} (population ${city.pop}) is the ${ordinal_suffix_of(rank + 1)} most populated city in ${this.state}.`;
|
||||
this.message = `${city.name} (population ${city.pop}) is the ${ordinal_suffix_of(rank + 1)} most populated city in ${this.state_name}.`;
|
||||
this.city_guess = "";
|
||||
this.draw();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue