修复:未探索地下造成的查询错误 & gs帮助错别字

This commit is contained in:
Wuyi无疑 2022-04-06 23:15:12 +08:00
parent 622cbdda8c
commit 218a35e24d
2 changed files with 8 additions and 5 deletions

View File

@ -1195,11 +1195,14 @@ async def draw_pic(uid: str, nickname: str, image: Optional[Match] = None, mode:
under_chasms_maw = i
# 层岩巨渊
text_draw.text((477, 727), str(chasms_maw['exploration_percentage'] / 10) + '%', text_color,
genshin_font(22))
text_draw.text((523, 753), str(under_chasms_maw['exploration_percentage'] / 10) + '%', text_color,
genshin_font(22))
text_draw.text((500, 782), 'lv.' + str(under_chasms_maw['offerings'][0]['level']), text_color, genshin_font(22))
if chasms_maw:
text_draw.text((477, 727), str(chasms_maw['exploration_percentage'] / 10) + '%', text_color,
genshin_font(22))
text_draw.text((500, 782), 'lv.' + str(chasms_maw['offerings'][0]['level']), text_color, genshin_font(22))
if under_chasms_maw:
text_draw.text((523, 753), str(under_chasms_maw['exploration_percentage'] / 10) + '%', text_color,
genshin_font(22))
# 蒙德
text_draw.text((235, 600), str(mondstadt['exploration_percentage'] / 10) + '%', text_color,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 1.3 MiB