This commit is contained in:
syuilo 2018-08-29 16:19:09 +09:00
parent 14ca9a2847
commit 256a2d25b0

View file

@ -93,7 +93,7 @@ export default class GuessingGameModule implements IModule {
} else {
if (guess.length > 3) return;
const g = parseInt(guess, 10);
const g = parseInt(guess[0], 10);
const firsttime = exist.tries.indexOf(g) === -1;