This commit is contained in:
parent
27102094c8
commit
9f6f616ecc
|
@ -295,11 +295,15 @@ class GuessingGameContext extends Context {
|
|||
return 'やめました。';
|
||||
}
|
||||
|
||||
const guess = parseInt(query, 10);
|
||||
|
||||
if (isNaN(guess)) {
|
||||
return '整数で推測してください。「やめる」と言うとゲームをやめます。';
|
||||
}
|
||||
|
||||
this.try++;
|
||||
this.emit('updated');
|
||||
|
||||
const guess = parseInt(query, 10);
|
||||
|
||||
if (this.secret < guess) {
|
||||
return `${guess}よりも小さいですね`;
|
||||
} else if (this.secret > guess) {
|
||||
|
|
Loading…
Reference in New Issue