diff --git a/src/modules/follow/index.ts b/src/modules/follow/index.ts index 2c4b061..9e363eb 100644 --- a/src/modules/follow/index.ts +++ b/src/modules/follow/index.ts @@ -17,6 +17,8 @@ export default class FollowModule implements IModule { msg.reply(serifs.follow.alreadyFollowed); } else if (msg.friend.love < -5) { msg.reply(serifs.follow.ng); + } else if (msg.friend.love < 3) { + msg.reply(serifs.follow.requireMoreLove); } else { this.ai.api("following/create", { userId: msg.userId, diff --git a/src/serifs.ts b/src/serifs.ts index 9dc5665..bb6e336 100644 --- a/src/serifs.ts +++ b/src/serifs.ts @@ -264,6 +264,8 @@ export default { follow: { ok: 'フォローしました!', + + requireMoreLove: 'もう少し仲良くなったらお願いできますか?', alreadyFollowed: 'えっ?既にあなたのことはフォローしていますよ!',