diff options
author | dannye <33dannye@gmail.com> | 2021-01-16 14:11:08 -0600 |
---|---|---|
committer | dannye <33dannye@gmail.com> | 2021-01-16 14:11:08 -0600 |
commit | 5ca3f85df5cd0601f810797ee19a5086a0bf24c1 (patch) | |
tree | 9e84d9a7c45c045e89afd60e93ea6de1e304df6c /tools/script_extractor2.py | |
parent | 5af59b450677468d315e130678562ce922ba1a95 (diff) |
Fix script command 0x17 argument list
Diffstat (limited to 'tools/script_extractor2.py')
-rwxr-xr-x | tools/script_extractor2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/script_extractor2.py b/tools/script_extractor2.py index 1b7aaf7..912c16d 100755 --- a/tools/script_extractor2.py +++ b/tools/script_extractor2.py @@ -47,7 +47,7 @@ script_commands = { 0x14: { "name": "fight_club_pupil_jump", "params": [ "label", "label", "label", "label", "label" ] }, 0x15: { "name": "set_active_npc_direction", "params": [ "direction" ] }, 0x16: { "name": "pick_next_man1_requested_card", "params": [] }, - 0x17: { "name": "get_man1_requested_card_name_text", "params": [] }, + 0x17: { "name": "load_man1_requested_card_into_txram_slot", "params": [ "byte" ] }, 0x18: { "name": "jump_if_man1_requested_card_owned", "params": [ "label" ] }, 0x19: { "name": "jump_if_man1_requested_card_in_collection", "params": [ "label" ] }, 0x1a: { "name": "remove_man1_requested_card_from_collection", "params": [] }, |