From 252293cc732c40522eb1f4083094fcdb66df5697 Mon Sep 17 00:00:00 2001 From: scawful Date: Mon, 13 Jan 2025 08:56:53 -0500 Subject: [PATCH] Add distance check to kaepora gaebora sprite --- Sprites/NPCs/eon_owl.asm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Sprites/NPCs/eon_owl.asm b/Sprites/NPCs/eon_owl.asm index 6132f14..d8234f5 100644 --- a/Sprites/NPCs/eon_owl.asm +++ b/Sprites/NPCs/eon_owl.asm @@ -137,9 +137,10 @@ Sprite_EonOwl_Main: KaeporaGaebora: { %PlayAnimation(0,0,1) - LDA.w SprTimerA, X : BNE .not_ready - %ShowUnconditionalMessage($146) - %GotoAction(4) + JSL GetDistance8bit_Long : CMP.b #$50 : BCC .not_ready + LDA.w SprTimerA, X : BNE .not_ready + %ShowUnconditionalMessage($146) + %GotoAction(4) .not_ready RTS }