diff options
author | Astatin <[email protected]> | 2025-04-29 09:27:37 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-04-29 09:27:37 +0200 |
commit | fb689cdc68b8d1da3d988da43671bd0ddb063e88 (patch) | |
tree | 25a93ebea1809c814e3780bc9b3d8dd092522683 /dialogues | |
parent | a846ccc0cc20fe49b5ee07e252b370dc005b38cd (diff) |
add earcopter + freeze as learned items + fix collision after item pick up
Diffstat (limited to 'dialogues')
-rw-r--r-- | dialogues/dialogues.gbasm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/dialogues/dialogues.gbasm b/dialogues/dialogues.gbasm index 1501a79..e950b93 100644 --- a/dialogues/dialogues.gbasm +++ b/dialogues/dialogues.gbasm @@ -137,7 +137,6 @@ Dialogue_script_instruction_Jump_Table: POP DE PUSH HL LD HL, $dialogue_first_line - DBG CALL =Print_str POP HL @@ -192,7 +191,6 @@ Dialogue_script_instruction_Jump_Table: LD A, L LD ($mem_learn_attack_dialogue_ret_ptr+1), A - LD A, E LD HL, $mem_bunny_attacks .Learn_Attack.Check_doubles.loop: LD A, (HL) @@ -212,7 +210,7 @@ Dialogue_script_instruction_Jump_Table: LD HL, $mem_bunny_attacks ADD L LD L, A - LD (HL), $02 + LD (HL), E LD A, $mem_number_of_attacks INC A LD $mem_number_of_attacks, A @@ -251,7 +249,6 @@ Dialogue_script_instruction_Jump_Table: LD H, A LD A, ($mem_learn_attack_dialogue_ret_ptr+1) LD L, A - DBG JP =Dialogue_script_step.next .INCLUDE "dialogues/text.gbasm" |