test
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
mol
2023-12-14 09:28:57 +08:00
parent 44ad5a973c
commit a1ef6311c4
2 changed files with 35 additions and 0 deletions

View File

@ -41,6 +41,7 @@ function cookInit() {
}
function dealCommon(data) {
logger('开始处理指令')
logger(data)
const [commandText, ...contentText] = data.text.trim().split(' ');
for (let com of cookCommand.keys()) {
@ -55,4 +56,5 @@ export default function install(bot, queue) {
Bot = bot;
Queue = queue;
cookInit();
logger('cook 插件加载成功')
}