summaryrefslogtreecommitdiff
path: root/scripts/LancesRoom.asm
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/LancesRoom.asm')
-rwxr-xr-xscripts/LancesRoom.asm10
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: