Merge remote-tracking branch 'nonebot2/nonebot2' into nonebot2

This commit is contained in:
CMHopeSunshine 2022-06-21 16:26:33 +08:00
commit 183fb1970c

View File

@ -62,7 +62,7 @@ def create_guess_matcher(role_name, second, group_id):
return True
return False
alias_list = character_json[role_name]
alias_list = character_json.get(role_name, [])
re_str = role_name + '|' + '|'.join(alias_list)
guess_matcher = on_regex(re_str, temp=True, rule=Rule(check_group))
guess_matcher.plugin_name = "Guess_voice"