From 9549675600f231daba10841b67b04a2de9ceba52 Mon Sep 17 00:00:00 2001 From: Llinos Evans <36418502+PlagueVonKarma@users.noreply.github.com> Date: Sun, 9 Apr 2023 19:49:22 +0100 Subject: [PATCH] Removed boosted exp text It's not boosting anymore, so it shouldn't be calling unnecessary scripts to spit out misleading text either. --- engine/battle/experience.asm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/battle/experience.asm b/engine/battle/experience.asm index f4d31cb2..06f5097c 100644 --- a/engine/battle/experience.asm +++ b/engine/battle/experience.asm @@ -79,7 +79,7 @@ GainExperience: ld a, 0 jr z, .next .tradedMon - call BoostExp ; traded mon exp boost + ;call BoostExp ; traded mon exp boost ld a, 1 .next ld [wGainBoostedExp], a @@ -347,10 +347,10 @@ GainedText: and a ret nz ld hl, ExpPointsText - ld a, [wGainBoostedExp] - and a - ret z - ld hl, BoostedText + ;ld a, [wGainBoostedExp] + ;and a + ;ret z + ;ld hl, BoostedText ret WithExpAllText: