diff options
author | Astatin <[email protected]> | 2024-09-13 21:41:15 +0900 |
---|---|---|
committer | Astatin <astatin@redacted> | 2024-09-13 21:41:15 +0900 |
commit | 76da5a2764fbaeebf25801fef326ede085f92220 (patch) | |
tree | 5de264d5c66bfa402ac912ad2132dd661374d6e5 /map | |
parent | 4949c3d63ad5c06b228842fe933579d7f9a08517 (diff) |
Just realized the new levels were carved on top of the previous level >.<
Diffstat (limited to 'map')
-rw-r--r-- | map/generation.gbasm | 5 | ||||
-rw-r--r-- | map/objects.gbasm | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/map/generation.gbasm b/map/generation.gbasm index 4f5296a..7604651 100644 --- a/map/generation.gbasm +++ b/map/generation.gbasm @@ -330,3 +330,8 @@ Dungeon_Generation: Dungeon_Generation.Head_explosion_loop.end: RET + +Reset_Map: + LD HL, $c6ff + LD BC, $0281 + JP =bzero diff --git a/map/objects.gbasm b/map/objects.gbasm index 22a65ee..2e36b12 100644 --- a/map/objects.gbasm +++ b/map/objects.gbasm @@ -62,6 +62,7 @@ Stairs_action: XOR A LD $reg_lcd_controller, A + CALL =Reset_Map JP =New_Dungeon Display_Object: |