From a41dac9a2fe3ef50db1c8519d440d83cc6721203 Mon Sep 17 00:00:00 2001 From: Rangi Date: Mon, 7 Jun 2021 19:36:03 -0400 Subject: [PATCH] "ld [MON_LEVEL], a" in ComputeNPCTrademonStats should be "ld [wCurPartyLevel], a" --- engine/pokemon/move_mon.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]