Add and simplify bugfixes in bugs_and_glitches.md (#664)

Add extra fixes for bugs covered on Bulbapedia (and simplify others)
This commit is contained in:
Colton G. Rushton
2020-01-04 17:52:08 -04:00
committed by Rangi
parent e678eb78a1
commit 5728d01417
2 changed files with 265 additions and 11 deletions

View File

@@ -725,10 +725,14 @@ AI_HealStatus:
xor a
ld [hl], a
ld [wEnemyMonStatus], a
; Bug: this should reset SUBSTATUS_NIGHTMARE too
; Uncomment the lines below to fix
; Bug: this should reset SUBSTATUS_NIGHTMARE
; Uncomment the 2 lines below to fix
; ld hl, wEnemySubStatus1
; res SUBSTATUS_NIGHTMARE, [hl]
; Bug: this should reset SUBSTATUS_CONFUSED
; Uncomment the 2 lines below to fix
; ld hl, wEnemySubStatus3
; res SUBSTATUS_CONFUSED, [hl]
ld hl, wEnemySubStatus5
res SUBSTATUS_TOXIC, [hl]
ret