From a7e19674e402430519c9f14d19af97717daf8195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=CC=B7O=CC=B7N=CC=B7D=CC=B7O=CC=B7N=CC=B7=E5=B0=91?= =?UTF-8?q?=E6=9E=97?= <22037550+Shivawkes@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:27:31 -0500 Subject: [PATCH] index.ts --- src/modules/guessing-game/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/guessing-game/index.ts b/src/modules/guessing-game/index.ts index 93ad457..403f7fb 100644 --- a/src/modules/guessing-game/index.ts +++ b/src/modules/guessing-game/index.ts @@ -30,7 +30,7 @@ export default class extends Module { @bindThis private async mentionHook(msg: Message) { - if (!msg.includes(['数当て', '数あて'])) return false; + if (!msg.includes(['Number guessing', 'guessing game'])) return false; const exist = this.guesses.findOne({ userId: msg.userId, @@ -64,13 +64,13 @@ export default class extends Module { isEnded: false }); - // 処理の流れ上、実際にnullになることは無さそうだけど一応 + // It is unlikely to be actually null in the process flow, but just in case. if (exist == null) { this.unsubscribeReply(key); return; } - if (msg.text.includes('やめ')) { + if (msg.text.includes('stop')) { msg.reply(serifs.guessingGame.cancel); exist.isEnded = true; exist.endedAt = Date.now();