diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-07 19:37:58 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-07 19:37:58 -0400 |
commit | 6f11782f6313138b8dbf8e221d0bf714a19873ec (patch) | |
tree | 11db086b9f3f13e542f5087b9d69b2fa6d720477 | |
parent | c133efea5f8438ea40be83dc3b2039494574c768 (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 f843e46a..80045c15 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] |