Compare commits
2 Commits
dc6df7c344
...
8b75691c5f
Author | SHA1 | Date |
---|---|---|
|
8b75691c5f | |
|
6ebe1cf4aa |
|
@ -0,0 +1,6 @@
|
|||
[
|
||||
{
|
||||
"riddle": "What has to be broken before you can use it?",
|
||||
"answer": "An egg."
|
||||
}
|
||||
]
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "schat2-clive",
|
||||
"version": "1.17.3",
|
||||
"version": "1.18.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "schat2-clive",
|
||||
"version": "1.17.3",
|
||||
"version": "1.18.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"bhttp": "^1.2.8",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "schat2-clive",
|
||||
"version": "1.17.3",
|
||||
"version": "1.18.0",
|
||||
"description": "Game host for SChat 2-powered chat sites",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
'use strict';
|
||||
|
||||
const riddles = require('../../assets/riddles.json');
|
||||
|
||||
const open = new Map();
|
||||
|
||||
function onCommand(args, context) {
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
onCommand,
|
||||
};
|
Loading…
Reference in New Issue