fix: 「おはよう」など特定のワードを含むリプライにaichatが反応できない

モジュールの初期化順(mentionHookのインストール順)を変更することで、aichatの優先度が高くなるようにした
This commit is contained in:
hos1miya 2025-02-04 08:00:01 +09:00
parent 7814bef9b1
commit cfeccc6eee

View file

@ -74,6 +74,7 @@ promiseRetry(retry => {
// 藍起動 // 藍起動
new (account, [ new (account, [
new CoreModule(), new CoreModule(),
new AiChatModule(),
new EmojiModule(), new EmojiModule(),
new EmojiReactModule(), new EmojiReactModule(),
new FortuneModule(), new FortuneModule(),
@ -97,7 +98,6 @@ promiseRetry(retry => {
new PollModule(), new PollModule(),
new ReminderModule(), new ReminderModule(),
new CheckCustomEmojisModule(), new CheckCustomEmojisModule(),
new AiChatModule(),
]); ]);
}).catch(e => { }).catch(e => {
log(chalk.red('Failed to fetch the account')); log(chalk.red('Failed to fetch the account'));