Fix Jeopardy

This commit is contained in:
lilyissillyyy
2025-08-16 22:13:34 -04:00
parent 7514473190
commit e74d9e633e
6 changed files with 131 additions and 12 deletions
+2
View File
@@ -3,6 +3,7 @@ const request = require('node-superfetch');
const winston = require('winston');
const moment = require('moment-timezone');
const Redis = require('./Redis');
const JeopardyScrape = require('./JeopardyScrape');
const Tensorflow = require('./Tensorflow');
const FontManager = require('./fonts/FontManager');
const PhoneManager = require('./phone/PhoneManager');
@@ -26,6 +27,7 @@ module.exports = class XiaoClient extends CommandClient {
this.redis = new Redis(this);
this.timers = new TimerManager(this);
this.pokemon = new PokemonStore();
this.jeopardy = new JeopardyScrape();
this.dispatchers = new Map();
this.cleverbots = new Map();
this.phone = new PhoneManager(this);