From 4c2b5181886cc487a846045e50247b823df41281 Mon Sep 17 00:00:00 2001 From: Thorn Avery Date: Fri, 29 Dec 2023 20:16:26 +1100 Subject: [PATCH] fixed battle tent rewards --- scripts/BattleTent.asm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/BattleTent.asm b/scripts/BattleTent.asm index a67bdca5..42f60344 100644 --- a/scripts/BattleTent.asm +++ b/scripts/BattleTent.asm @@ -615,6 +615,7 @@ BattleTentGuy_After: call PrintText ld a, [wBTRewards] ld b, RARE_CANDY + ld c, a call GiveItem jr nc, .bag_full ; could use money instead here ld hl, ReceivedRewardText @@ -626,6 +627,7 @@ BattleTentGuy_After: ld [wBTRewards], a ;ld b, POWER_FEED ld b, BOTTLE_CAP + ld c, a call GiveItem jr nc, .bag_full ld hl, ReceivedRewardText @@ -889,7 +891,7 @@ BattleTentGuy2_Heal: done ReceivedRewardPreamble: - text "Take these" + text "Take these," line "on the house!" prompt text_end