diff --git a/src/games/wordle.js b/src/games/wordle.js index 5df61da..ee6d8b7 100644 --- a/src/games/wordle.js +++ b/src/games/wordle.js @@ -91,7 +91,7 @@ function start(length = settings.defaultLength, context) { }); if (config.platform === 'irc') { - context.sendMessage(`${getBoard(Array.from({ length }, () => null), false, context)} guess the word with ${config.prefix}w [word]! ${style.bgsilver(' X ')} not in word; ${style.bgyellow(' X ')} wrong position; ${style.bggreen(' X ')} correct position.`, context.room.id); + context.sendMessage(`${getBoard(Array.from({ length }, () => null), false, context)} guess the word with ${config.prefix}w [word]! ${style.bgsilver(' X ')} not in word; ${style.bgyellow(` X${style.yellow('?')}`)} wrong position; ${style.bggreen(` X${style.green('*')}`)} correct position.`, context.room.id); // eslint-disable-line no-irregular-whitespace } else { 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); }