diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-07 19:36:03 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-07 19:36:03 -0400 |
commit | a41dac9a2fe3ef50db1c8519d440d83cc6721203 (patch) | |
tree | 848c24f56f015143e55d838f48afaad754e20056 | |
parent | e140e88b7b38f5c70aa6ddcf826f88bcafee4ea3 (diff) |
"ld [MON_LEVEL], a" in ComputeNPCTrademonStats should be "ld [wCurPartyLevel], a"
-rw-r--r-- | engine/pokemon/move_mon.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/pokemon/move_mon.asm b/engine/pokemon/move_mon.asm index e214b5b6a..e011ef7bb 100644 --- a/engine/pokemon/move_mon.asm +++ b/engine/pokemon/move_mon.asm @@ -1373,7 +1373,7 @@ ComputeNPCTrademonStats: ld a, MON_LEVEL call GetPartyParamLocation ld a, [hl] - ld [MON_LEVEL], a ; wow + ld [MON_LEVEL], a ; should be "ld [wCurPartyLevel], a" ld a, MON_SPECIES call GetPartyParamLocation ld a, [hl] |