You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Document HOF Master bug (close #494)
This commit is contained in:
@@ -18,7 +18,7 @@ HallOfFame:: ; 0x8640e
|
||||
|
||||
ld hl, wHallOfFameCount
|
||||
ld a, [hl]
|
||||
cp 200
|
||||
cp HOF_MASTER_COUNT - 1 ; should be HOF_MASTER_COUNT
|
||||
jr nc, .ok
|
||||
inc [hl]
|
||||
.ok
|
||||
@@ -355,7 +355,7 @@ _HallOfFamePC: ; 86650
|
||||
|
||||
.DisplayMonAndStrings:
|
||||
; Print the number of times the player has entered the Hall of Fame.
|
||||
; If that number is above 200, print "HOF Master!" instead.
|
||||
; If that number is at least HOF_MASTER_COUNT, print "HOF Master!" instead.
|
||||
ld a, [wHallOfFameMonCounter]
|
||||
cp PARTY_LENGTH
|
||||
jr nc, .fail
|
||||
@@ -376,7 +376,7 @@ _HallOfFamePC: ; 86650
|
||||
pop hl
|
||||
call DisplayHOFMon
|
||||
ld a, [wHallOfFameTempWinCount]
|
||||
cp 200 + 1
|
||||
cp HOF_MASTER_COUNT
|
||||
jr c, .print_num_hof
|
||||
ld de, .HOFMaster
|
||||
hlcoord 1, 2
|
||||
|
||||
Reference in New Issue
Block a user