shithub: pokecrystal

Download patch

ref: a41dac9a2fe3ef50db1c8519d440d83cc6721203
parent: e140e88b7b38f5c70aa6ddcf826f88bcafee4ea3
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Mon Jun 7 15:36:03 EDT 2021

"ld [MON_LEVEL], a" in ComputeNPCTrademonStats should be "ld [wCurPartyLevel], a"

--- a/engine/pokemon/move_mon.asm
+++ b/engine/pokemon/move_mon.asm
@@ -1373,7 +1373,7 @@
 	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]