This commit is contained in:
		
							parent
							
								
									27102094c8
								
							
						
					
					
						commit
						9f6f616ecc
					
				src/api/bot
|  | @ -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 New Issue