Making cat counter ignore non-cat NPCs?

I have the cat counter in my game almost finished, but it still counts any npc you talk to...
Could someone tell me how to make it ignore everything other than cats?
 
This is in "DrawNPCText"

Code:
CLC ; Clear carry flag
LDA #$01 ; Load decimal value 1 into the accumulator
ADC myMoney ; Add accumulator with the value contained in myMoney
STA myMoney ; Store the result of the arithmetic in myMoney (overwriting what was there)
LDA DrawHudBytes
ora #HUD_myMoney
STA DrawHudBytes
I'm currently being helped by cargo, I'll let you know what ends up working.
 
Top Bottom