diff options
author | Astatin <[email protected]> | 2024-12-17 18:42:11 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2024-12-17 18:42:11 +0900 |
commit | 2b0c6081d8a2c48c1f8412aefdcec6c2222e716c (patch) | |
tree | 9f1986c74b549856fcd566ea33c0de24b8483782 /main.gbasm | |
parent | b4934d36f8a2f572c491a0d62f94b757221c6b68 (diff) |
Respawn enemies in other rooms when less than 5 enemies alive
Diffstat (limited to 'main.gbasm')
-rw-r--r-- | main.gbasm | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -112,6 +112,15 @@ VBLANK_Entrypoint: LD A, $tmp_var_5 LD HL, $9c12 CALL =Print_8bit + LD A, $tmp_var_6 + LD HL, $9c0d + CALL =Print_8bit + LD A, $tmp_var_4 + LD HL, $9c0a + CALL =Print_8bit + LD A, $mem_bunny_current_room_idx + LD HL, $9c07 + CALL =Print_8bit LD A, $palette_bold_font LD $reg_bg_palette, A @@ -134,9 +143,6 @@ VBLANK_Entrypoint: CALL =Copy_Dialogue_Buffer CALL =Display_dialogue_cursor - LD A, $reg_lcd_status - LD $tmp_var_5, A - ; LYC LD A, $09 LD $reg_lyc, A @@ -152,6 +158,7 @@ VBLANK_Entrypoint: CALL =Object_Interactions_Check CALL =Entities_Actions + CALL =Respawn_Entities CALL =Prepare_Scrolling_Map Skip_Dungeon_Update: |