Removed boosted exp text

It's not boosting anymore, so it shouldn't be calling unnecessary scripts to spit out misleading text either.
This commit is contained in:
Llinos Evans 2023-04-09 19:49:22 +01:00
parent a0cc8d52b0
commit 9549675600

View file

@ -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: