Fix crash of a monster's name contains "Level"

This commit is contained in:
Trysdyn Black 2024-10-07 02:25:50 -07:00
parent db4091f41f
commit e26f849215

View file

@ -18,7 +18,7 @@ def parse_MONSTERS(data):
# Name and level
if "(Level " in line:
name = line.split(" (")[0]
info["stats"]["level"] = int(line.split("Level ")[1][:-1])
info["stats"]["level"] = int(line.split("(Level ")[1][:-1])
# Stat chart rows
elif line.startswith("|"):
for stat in line[1:-1].split("|"):