From 62946af5f04bf204ef225b70c75273c9e0a64bfe Mon Sep 17 00:00:00 2001 From: scawful Date: Thu, 6 Jun 2024 09:44:21 -0400 Subject: [PATCH] decrease goldstar damage class --- Items/goldstar.asm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Items/goldstar.asm b/Items/goldstar.asm index 71b3a8e..277197c 100644 --- a/Items/goldstar.asm +++ b/Items/goldstar.asm @@ -1028,11 +1028,12 @@ MaybeUploadBirdGraphicsToOam: ApplyGoldstarDamageClass: { PHA + ; If the hookshot is active LDA $0202 : CMP.b #$03 : BNE .return - ; If the goldstar is active swap in the damage class + ; If the goldstar is active, swap in the damage class LDA GoldstarOrHookshot : CMP #$02 : BNE .return PLA - LDA #$03 + LDA #$02 JMP .apply .return PLA