Prev: 649E Up: Map Next: 64B4
64A1: Handle refueling from fuel depot
Used by the routine at hit_fuel.
Called when the plane touches a fuel depot during REFUEL mode. Marks the depot slot as empty and adds fuel.
refuel_from_depot 64A1 LD (HL),C Mark depot slot as empty.
64A2 LD HL,$5F00 Reset current_slot_ptr and exploding_fragments_ptr to list starts.
64A5 LD ($5F60),HL
64A8 LD HL,$5F2E
64AB LD ($5F62),HL
64AE CALL add_fuel Add fuel and jump to reset_gameplay_mode to reset gameplay mode.
64B1 JP reset_gameplay_mode
Prev: 649E Up: Map Next: 64B4