Fixed dice excluding last face, increased max rolls to 20. Increased default number of Hunt guesses. Increased default Riddle timeout.

This commit is contained in:
Niels Simenon
2022-11-02 00:34:03 +01:00
parent 6adb443aff
commit 46c61e2a92
3 changed files with 11 additions and 11 deletions

View File

@@ -79,17 +79,17 @@ module.exports = {
timeout: 60,
},
riddle: {
timeout: 20,
timeout: 30,
score: false,
},
dice: {
maxRolls: 10,
maxRolls: 20,
maxFaces: 1000,
},
hangman: {
hunt: {
minLength: 5,
maxLength: 9,
guesses: [2, 3, 4, 5, 6, 7], // by word length, last number repeats for longer words
// guesses: 6, // fixed
guesses: [4, 4, 6, 7, 9],
// guesses: [2, 3, 4, 5, 6, 7], // by word length, last number repeats for longer words
},
};