Fixed missing word definition breaking Clive. Using em space in wordle letterboard for SChat.

This commit is contained in:
ThePendulum
2024-06-09 18:26:17 +02:00
parent 3196877c37
commit bbe573d8f3
2 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,7 @@ function getBoard(letters, showLetters, context) {
return config.platform === 'irc'
? letter
: style.grey(letter);
}).join(' ');
}).join(config.platform === 'irc' ? ' ' : ''); // regular space vs em space
return `${prefix}${middle}${suffix}Letters: ${letterBoard}`; // eslint-disable-line no-irregular-whitespace
}