Compare commits

..

No commits in common. "6adb443aff3ad62e3eabb2c690f5d876d0369329" and "35a28760cd963473a92bd04e5ea03d28a3923687" have entirely different histories.

5 changed files with 5 additions and 11 deletions

View File

@ -44,18 +44,13 @@ module.exports = {
},
schatColorAliases: {
red: 'red',
brown: 'brown',
orange: 'orange',
beige: 'beige',
yellow: 'yellow',
forest: 'forest',
green: 'green',
mint: 'mint',
cyan: 'cyan',
blue: 'blue',
sky: 'sky',
purple: 'purple',
violet: 'violet',
magenta: 'magenta',
pink: 'pink',
grey: 'shadow',
silver: 'shadow',

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "schat2-clive",
"version": "1.19.5",
"version": "1.19.4",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "schat2-clive",
"version": "1.19.5",
"version": "1.19.4",
"license": "ISC",
"dependencies": {
"bhttp": "^1.2.8",

View File

@ -1,6 +1,6 @@
{
"name": "schat2-clive",
"version": "1.19.5",
"version": "1.19.4",
"description": "Game host for SChat 2-powered chat sites",
"main": "src/app.js",
"scripts": {

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) : style.brown('…'))), // Em Space to ensure proper spacing in SChat
track: Array.from({ length: getGuesses(word) }, (value, index) => (index % 2 ? pickRandom(trees) : '')), // Em Space to ensure proper spacing in SChat
});
renderBoard(context);

View File

@ -41,7 +41,6 @@ const styleMethods = (() => {
if (config.platform === 'irc') {
return {
...styles,
forest: styles.green,
code: bypass,
};
}