forked from Hay1tsme/artemis
Merge pull request 'Fix wrong id being used to check for Chunithm WORLD'S END charts' (#33) from ASleepyCat/artemis:fix-worlds-end-id into develop
Reviewed-on: Hay1tsme/artemis#33
This commit is contained in:
commit
2affd0aae9
@ -169,8 +169,10 @@ class ChuniReader(BaseReader):
|
|||||||
fumen_path = MusicFumenData.find("file").find("path")
|
fumen_path = MusicFumenData.find("file").find("path")
|
||||||
|
|
||||||
if fumen_path is not None:
|
if fumen_path is not None:
|
||||||
chart_id = MusicFumenData.find("type").find("id").text
|
chart_type = MusicFumenData.find("type")
|
||||||
if chart_id == "4":
|
chart_id = chart_type.find("id").text
|
||||||
|
chart_diff = chart_type.find("str").text
|
||||||
|
if chart_diff == "WorldsEnd" and (chart_id == "4" or chart_id == "5"): # 4 in SDBT, 5 in SDHD
|
||||||
level = float(xml_root.find("starDifType").text)
|
level = float(xml_root.find("starDifType").text)
|
||||||
we_chara = (
|
we_chara = (
|
||||||
xml_root.find("worldsEndTagName")
|
xml_root.find("worldsEndTagName")
|
||||||
|
Loading…
Reference in New Issue
Block a user