🐛 修复ysc

This commit is contained in:
CMHopeSunshine 2022-08-26 19:59:44 +08:00
parent 5cd172f3d6
commit 45f28db2e6

View File

@ -234,7 +234,7 @@ def CommandCharacter(limit: int = 3, replace_uid: bool = True) -> List[str]:
async def _character(matcher: Matcher, state: T_State, user_id: str = Arg('main_user')): async def _character(matcher: Matcher, state: T_State, user_id: str = Arg('main_user')):
msg = state['_prefix']['command_arg'].extract_plain_text().strip() if replace_uid else state['msg'] msg = state['_prefix']['command_arg'].extract_plain_text().strip() if replace_uid else state['msg']
if not msg: if not msg:
return random.choice(CHARACTERS) return [random.choice(CHARACTERS)]
character_list = [] character_list = []
characters = msg.split(' ') characters = msg.split(' ')
for character_name in characters: for character_name in characters: