mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-23 12:28:07 +01:00
Try to read default num as float in script if int doesn't work.
This commit is contained in:
parent
7f3eb9970e
commit
97a1ff5186
1 changed files with 4 additions and 1 deletions
3
scripts/stats_schema_achievement_gen/achievements_gen.py
Normal file → Executable file
3
scripts/stats_schema_achievement_gen/achievements_gen.py
Normal file → Executable file
|
@ -64,7 +64,10 @@ def generate_stats_achievements(schema, config_directory):
|
|||
for s in stats_out:
|
||||
default_num = 0
|
||||
if (s['type'] == 'int'):
|
||||
try:
|
||||
default_num = int(s['default'])
|
||||
except ValueError:
|
||||
default_num = int(float(s['default']))
|
||||
else:
|
||||
default_num = float(s['default'])
|
||||
output_stats += "{}={}={}\n".format(s['name'], s['type'], default_num)
|
||||
|
|
Loading…
Reference in a new issue