Update index.ts

This commit is contained in:
syuilo 2022-02-14 00:24:59 +09:00 committed by GitHub
parent bf7e1ec77e
commit 51543b135c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ export default class extends Module {
friends.forEach(f => {
const friend = new Friend(this.ai, { doc: f });
// 親愛度が7以上必要
if (friend.love < 7) return;
// 親愛度が5以上必要
if (friend.love < 5) return;
const data = friend.getPerModulesData(this);