Skip to content

Commit

Permalink
[OoT] Fixup Quick Import (#406)
Browse files Browse the repository at this point in the history
quickimport fixup
  • Loading branch information
Dragorn421 authored Aug 9, 2024
1 parent fc28297 commit 27544bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fast64_internal/oot/tools/quick_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ def quick_import_exec(context: bpy.types.Context, sym_name: str):
continue
found_defs = sym_def_pattern.findall(source)
print(file_p, f"{found_defs=}")
all_found_defs[file_p] = found_defs
if found_defs:
all_found_defs[file_p] = found_defs

# Ideally if for example sym_name was gLinkAdultHookshotTipDL,
# all_found_defs now contains:
Expand Down

0 comments on commit 27544bd

Please sign in to comment.