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