mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
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:
parent
a0cc8d52b0
commit
9549675600
|
@ -79,7 +79,7 @@ GainExperience:
|
||||||
ld a, 0
|
ld a, 0
|
||||||
jr z, .next
|
jr z, .next
|
||||||
.tradedMon
|
.tradedMon
|
||||||
call BoostExp ; traded mon exp boost
|
;call BoostExp ; traded mon exp boost
|
||||||
ld a, 1
|
ld a, 1
|
||||||
.next
|
.next
|
||||||
ld [wGainBoostedExp], a
|
ld [wGainBoostedExp], a
|
||||||
|
@ -347,10 +347,10 @@ GainedText:
|
||||||
and a
|
and a
|
||||||
ret nz
|
ret nz
|
||||||
ld hl, ExpPointsText
|
ld hl, ExpPointsText
|
||||||
ld a, [wGainBoostedExp]
|
;ld a, [wGainBoostedExp]
|
||||||
and a
|
;and a
|
||||||
ret z
|
;ret z
|
||||||
ld hl, BoostedText
|
;ld hl, BoostedText
|
||||||
ret
|
ret
|
||||||
|
|
||||||
WithExpAllText:
|
WithExpAllText:
|
||||||
|
|
Loading…
Reference in a new issue