From a29eba70f01ea001e5a90eb1d03c05e6ec3a67b8 Mon Sep 17 00:00:00 2001 From: ThePendulum Date: Mon, 3 Jun 2024 01:10:01 +0200 Subject: [PATCH] Added instructions to wordle start message. --- src/games/wordle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/games/wordle.js b/src/games/wordle.js index 1951b36..a383562 100644 --- a/src/games/wordle.js +++ b/src/games/wordle.js @@ -76,7 +76,7 @@ function start(length = settings.defaultLength, context) { guesses: [], }); - context.sendMessage(`${getBoard(Array.from({ length }, () => null), false, context)} guess the word! ${style.grey(style.bold('X'))} not in word; ${style.orange(style.bold('X'))} wrong position; ${style.green(style.bold('X'))} correct position.`, context.room.id); + context.sendMessage(`${getBoard(Array.from({ length }, () => null), false, context)} guess the word with ${config.prefix}w [word]! ${style.grey(style.bold('X'))} not in word; ${style.orange(style.bold('X'))} wrong position; ${style.green(style.bold('X'))} correct position.`, context.room.id); context.logger.info(`Wordle started: ${word.word.toUpperCase()}`); }