From 4efb3e307cd6b4bf267ab0d509f8e5ab498f798e Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 6 Nov 2020 10:34:05 -0500 Subject: Sync more with pokered --- scripts/LancesRoom.asm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'scripts/LancesRoom.asm') diff --git a/scripts/LancesRoom.asm b/scripts/LancesRoom.asm index 68d2020e..174a1505 100755 --- a/scripts/LancesRoom.asm +++ b/scripts/LancesRoom.asm @@ -18,22 +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: -- cgit v1.3.1-sl0p