From a0f1914ce60b17a54e5a346b51c5fb37ba84ea6d Mon Sep 17 00:00:00 2001 From: ThePendulum Date: Fri, 5 Jul 2024 00:40:52 +0200 Subject: [PATCH] Amended wordle help. --- .eslintrc | 2 +- src/games/wordle.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc b/.eslintrc index 71532be..13613f7 100755 --- a/.eslintrc +++ b/.eslintrc @@ -15,6 +15,6 @@ "no-console": 0, "indent": ["error", "tab"], "no-tabs": 0, - "max-len": [2, {"code": 400, "tabWidth": 4, "ignoreUrls": true}] + "max-len": 0 } } diff --git a/src/games/wordle.js b/src/games/wordle.js index 8d3b18d..a288c3e 100644 --- a/src/games/wordle.js +++ b/src/games/wordle.js @@ -234,7 +234,7 @@ function onCommand(args, context) { module.exports = { name: 'Wordle', commands: ['wordle', 'hardle', 'lingo', 'guess', 'w'], - help: `Guess the ${settings.length}-letter word on the board. Submit a guess with ${config.prefix}w [word]. If the letter is green, it is in the correct place. If it is yellow, it is part of the word, but not in the correct place. The number of letters in the word is the highest score you can get. You lose 1 point per guess, down to 1 point.`, + help: `Guess the ${settings.length}-letter word on the board. Submit a guess with ${config.prefix}w [word]. If the letter is green, it is in the correct place. If it is yellow, it is part of the word, but not in the correct place. The number of letters in the word is the highest score you can get. You lose 1 point per guess, down to 1 point. Change the numbers of letters or switch to hard mode with ~wordle [length] [hard] or ~hardle [length].`, onCommand, // onMessage, };