mirror of
https://github.com/baiqwerdvd/StarRailUID.git
synced 2025-05-06 19:53:44 +08:00
fix bug
This commit is contained in:
parent
eea4493fb1
commit
e6b249c88e
@ -101,7 +101,6 @@ async def get_char_args(
|
||||
msg.replace('带', '换')
|
||||
.replace('拿', '换')
|
||||
.replace('圣遗物', '遗器')
|
||||
.replace('命', '魂')
|
||||
)
|
||||
|
||||
# 希儿带于夜色中换1000xxxx6希儿头
|
||||
@ -177,7 +176,7 @@ async def get_fake_char_str(char_name: str) -> Tuple[str, Optional[int]]:
|
||||
|
||||
"""
|
||||
talent_num = None
|
||||
if '魂' in char_name and char_name[0] in CHAR_TO_INT:
|
||||
if ('魂' in char_name or '命' in char_name) and char_name[0] in CHAR_TO_INT:
|
||||
talent_num = CHAR_TO_INT[char_name[0]]
|
||||
char_name = char_name[2:]
|
||||
return char_name, talent_num
|
||||
|
@ -161,7 +161,7 @@
|
||||
"21043": ["两个人的演唱会","演唱会"],
|
||||
"23021": ["游戏尘寰", "游戏"],
|
||||
"23022": ["重塑时光之忆", "时光之忆"],
|
||||
"23023": ["从未公平", "命运从未公平"],
|
||||
"23023": ["命运从未公平", "从未公平"],
|
||||
"23024": ["行于流逝的岸", "流逝的岸"],
|
||||
"24003": ["孤独的疗愈"]
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user