Added instructions to wordle start message.

This commit is contained in:
ThePendulum 2024-06-03 01:10:01 +02:00
parent 064b4eb0d4
commit a29eba70f0
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ function start(length = settings.defaultLength, context) {
guesses: [], 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()}`); context.logger.info(`Wordle started: ${word.word.toUpperCase()}`);
} }