mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-03-21 18:04:50 -05:00
Fix tutor_moves.h files containing duplicates (#9423)
This commit is contained in:
parent
e73c1426c9
commit
7139ebd19d
|
|
@ -178,7 +178,7 @@ def make_move_tutors(build_dir, special_movesets):
|
|||
with open(SOURCE_TUTORS_JSON, "r") as fp:
|
||||
repo_tutors = json.load(fp)
|
||||
|
||||
repo_tutors = sorted(repo_tutors + special_movesets["extraTutors"])
|
||||
repo_tutors = sorted(list(set(repo_tutors + special_movesets["extraTutors"])))
|
||||
create_tutor_moves_array(repo_tutors)
|
||||
|
||||
return repo_tutors
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user