diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-06 10:33:58 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-06 10:33:58 -0500 |
| commit | 13d4d533f7c5904391309e72f4b7937210b1c476 (patch) | |
| tree | 12af6219abc245f24a8931684c3240c95970b21d /scripts/LancesRoom.asm | |
| parent | Merge pull request #301 from Rangi42/master (diff) | |
| download | pokeyellow-13d4d533f7c5904391309e72f4b7937210b1c476.tar.gz pokeyellow-13d4d533f7c5904391309e72f4b7937210b1c476.tar.xz pokeyellow-13d4d533f7c5904391309e72f4b7937210b1c476.zip | |
Sync more with pokeyellow
Diffstat (limited to 'scripts/LancesRoom.asm')
| -rwxr-xr-x | scripts/LancesRoom.asm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/scripts/LancesRoom.asm b/scripts/LancesRoom.asm index 5c7301ef..6de0283e 100755 --- a/scripts/LancesRoom.asm +++ b/scripts/LancesRoom.asm @@ -18,23 +18,21 @@ LanceShowOrHideEntranceBlocks: ; open entrance ld a, $31 ld b, $32 - jp LanceSetEntranceBlocks + jp .setEntranceBlocks .closeEntrance ld a, $72 ld b, $73 - -LanceSetEntranceBlocks: +.setEntranceBlocks ; Replaces the tile blocks so the player can't leave. push bc ld [wNewTileBlockID], a lb bc, 6, 2 - call LanceSetEntranceBlock + call .SetEntranceBlock pop bc ld a, b ld [wNewTileBlockID], a lb bc, 6, 3 - -LanceSetEntranceBlock: +.SetEntranceBlock: predef_jump ReplaceTileBlock ResetLanceScript: |
