mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
条件式ミスった
This commit is contained in:
parent
8cf2ff6a56
commit
67016de179
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ 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) {
|
||||
} else if (msg.friend.love <= 3) {
|
||||
msg.reply(serifs.follow.requireMoreLove);
|
||||
} else {
|
||||
this.ai.api("following/create", {
|
||||
|
|
Loading…
Reference in a new issue