Added ground track to Hunt, added new SChat 2 colors.

This commit is contained in:
Niels Simenon
2022-11-01 05:59:17 +01:00
parent 35a28760cd
commit 53022278c9
3 changed files with 8 additions and 2 deletions

View File

@@ -138,7 +138,7 @@ function onCommand(args, context) {
flower: pickRandom(flowers),
target: pickRandom(targets),
predator: pickRandom(predators),
track: Array.from({ length: getGuesses(word) }, (value, index) => (index % 2 ? pickRandom(trees) : '')), // Em Space to ensure proper spacing in SChat
track: Array.from({ length: getGuesses(word) }, (value, index) => (index % 2 ? pickRandom(trees) : style.brown('…'))), // Em Space to ensure proper spacing in SChat
});
renderBoard(context);