From 4e43d717214dfeaa381cf2927e10afcf3af2d6cf Mon Sep 17 00:00:00 2001 From: Clansty Date: Fri, 19 Jan 2024 22:55:06 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=A7=A6=E5=8F=91=20/=20=E6=8C=87?= =?UTF-8?q?=E4=BB=A4=E7=9A=84=E6=B6=88=E6=81=AF=E4=B9=9F=E8=BD=AC=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/models/Instance.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/Instance.ts b/src/models/Instance.ts index a8c51f9..06b16e8 100644 --- a/src/models/Instance.ts +++ b/src/models/Instance.ts @@ -154,11 +154,11 @@ export default class Instance { this.deleteMessageController = new DeleteMessageController(this, this.tgBot, this.tgUser, this.oicq); this.miraiSkipFilterController = new MiraiSkipFilterController(this, this.tgBot, this.tgUser, this.oicq); this.inChatCommandsController = new InChatCommandsController(this, this.tgBot, this.tgUser, this.oicq); + this.quotLyController = new QuotLyController(this, this.tgBot, this.oicq); + this.forwardController = new ForwardController(this, this.tgBot, this.tgUser, this.oicq); if (this.workMode === 'group') { this.hugController = new HugController(this, this.tgBot, this.oicq); } - this.quotLyController = new QuotLyController(this, this.tgBot, this.oicq); - this.forwardController = new ForwardController(this, this.tgBot, this.tgUser, this.oicq); this.fileAndFlashPhotoController = new FileAndFlashPhotoController(this, this.tgBot, this.oicq); })() .then(() => this.log.info('初始化已完成'));