Prev: 6C85 Up: Map Next: 6CB2
6CA5: Reset Red Bird
Used by the routine at Run_Main_Loop_Body.
Resets the red bird to an inactive state by writing FF to its traversal direction, stun timers and current room. This effectively disables the red bird until it is reinitialised.
ResetRedBird 6CA5 LD HL,$6CB3 Write FF to *RedBirdTraversalDirection.
6CA8 LD C,$FF
6CAA LD (HL),C
6CAB INC HL Write FF to *RedBirdStunTimer.
6CAC LD (HL),C
6CAD INC HL Write FF to *RedBirdStunTimerCopy.
6CAE LD (HL),C
6CAF INC HL Write FF to *RedBirdCurrentRoom.
6CB0 LD (HL),C
6CB1 RET Return.
Prev: 6C85 Up: Map Next: 6CB2