Compare commits

...

2 Commits

Author SHA1 Message Date
Niels Simenon 5b4b5d3c0f 1.17.2 2022-10-28 02:00:06 +02:00
Niels Simenon 32e842957b Improved 8 ball styling. 2022-10-28 02:00:03 +02:00
3 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@ -77,11 +77,11 @@ async function onCommand(args, context) {
await timers.setTimeout(Math.random() * 3000 + 1000); await timers.setTimeout(Math.random() * 3000 + 1000);
context.sendMessage(`${style.bgnavy(style.black('◣ '))}${style.bgnavy(style.white(answer))}${style.bgnavy(style.black(' ◢'))}`, context.room.id, { context.sendMessage(`${style.navy('◥')}${style.bgnavy(style.white(` ${answer} `))}${style.navy('◤')}`, context.room.id, {
label: false, label: false,
style: { style: {
color: config.schatColors.white, color: config.schatColors.blue,
background: config.schatColors.navy, // background: config.schatColors.navy,
}, },
}); });