diff --git a/Paimon_Chat/Learning_repeate/main.py b/Paimon_Chat/Learning_repeate/main.py index 78eedc3..aeba579 100644 --- a/Paimon_Chat/Learning_repeate/main.py +++ b/Paimon_Chat/Learning_repeate/main.py @@ -322,7 +322,7 @@ upLearning.__paimon_help__ = { } @upLearning.handle() async def _(bot: Bot, event: GroupMessageEvent): - if Chat.answer_threshold == 1: + if Chat.speak_threshold == 1: Chat.answer_threshold = Chat.speak_threshold await upLearning.finish("派蒙已经学满贯了") else: @@ -344,10 +344,10 @@ downLearning.__paimon_help__ = { } @downLearning.handle() async def _(bot: Bot, event: GroupMessageEvent): - if Chat.answer_threshold == 6: + if Chat.speak_threshold == 6: Chat.answer_threshold = Chat.speak_threshold await downLearning.finish("派蒙不说话就是了o( ̄ヘ ̄o#)") else: Chat.speak_threshold += 1 Chat.answer_threshold = Chat.speak_threshold - await downLearning.finish("知道了知道了,旅行者就是嫌派蒙吵了") \ No newline at end of file + await downLearning.finish("知道了知道了,旅行者就是嫌派蒙吵了")