summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authori0brendan0 <19826742+i0brendan0@users.noreply.github.com>2019-02-05 01:38:08 -0600
committeri0brendan0 <19826742+i0brendan0@users.noreply.github.com>2019-02-05 01:38:08 -0600
commitca3f4484e53ee26d8db466f6062d40a5ec68a329 (patch)
tree5a2e9384132ce078e8a0c6978f919498741fe2c5
parent2f40c6efe284bef160250d0644701fff33e7c84a (diff)
fixed old labels
-rw-r--r--Don't-gain-experience-at-level-100.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/Don't-gain-experience-at-level-100.md b/Don't-gain-experience-at-level-100.md
index 8665313..3ec8639 100644
--- a/Don't-gain-experience-at-level-100.md
+++ b/Don't-gain-experience-at-level-100.md
@@ -30,17 +30,17 @@ Anyway, just edit one file, [engine/battle/core.asm](../blob/master/engine/battl
...
- .skip
+ .stat_exp_awarded
inc de
inc de
dec c
- jr nz, .loop1
+ jr nz, .stat_exp_loop
+ pop bc
+ ld hl, MON_LEVEL
+ add hl, bc
+ ld a, [hl]
+ cp MAX_LEVEL
-+ jp nc, .skip_stats
++ jp nc, .next_mon
+ push bc
xor a
ldh [hMultiplicand + 0], a
@@ -57,7 +57,7 @@ Anyway, just edit one file, [engine/battle/core.asm](../blob/master/engine/battl
...
- .skip_stats
+ .next_mon
ld a, [wPartyCount]
ld b, a
ld a, [wCurPartyMon]