You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
More support for MAX_LEVEL = 255
(ValidateOTTrademon and Function102bdc have `cp MAX_LEVEL + 1` operations that would still fail with such a correction, so there isn't perfect support.)
This commit is contained in:
@@ -730,7 +730,7 @@ BattleCommand_CheckObedience: ; 343db
|
||||
|
||||
; risingbadge
|
||||
bit RISINGBADGE, [hl]
|
||||
ld a, MAX_LEVEL + 1
|
||||
ld a, LOW(MAX_LEVEL + 1)
|
||||
jr nz, .getlevel
|
||||
|
||||
; stormbadge
|
||||
|
Reference in New Issue
Block a user