| 317 | } |
| 318 | |
| 319 | S32 zNPCGoalPlayerNear::NPCMessage(NPCMsg* mail) |
| 320 | { |
| 321 | S32 handled = 0; |
| 322 | |
| 323 | switch (mail->msgid) |
| 324 | { |
| 325 | case NPC_MID_TALKSTART: |
| 326 | if (stat == GOAL_STAT_PROCESS) |
| 327 | { |
| 328 | handled = 1; |
| 329 | flg_plyrnear |= (1 << 0); |
| 330 | } |
| 331 | break; |
| 332 | } |
| 333 | |
| 334 | return handled; |
| 335 | } |
| 336 | |
| 337 | void zNPCGoalPlayerNear::ChkCheatMedic() |
| 338 | { |
nothing calls this directly
no test coverage detected