| 536 | } |
| 537 | } |
| 538 | void zNPCVillager::CollideReview() |
| 539 | { |
| 540 | zNPCGoalCommon* goal; |
| 541 | S32 goaldidit; |
| 542 | |
| 543 | goaldidit = 0; |
| 544 | goal = (zNPCGoalCommon*)this->psy_instinct->GetCurGoal(); |
| 545 | if ((goal != NULL) && ((goal->flg_npcgable & 1) != 0)) |
| 546 | { |
| 547 | goal->Name(); |
| 548 | goaldidit = goal->CollReview(0); |
| 549 | } |
| 550 | if (goaldidit == 0) |
| 551 | { |
| 552 | zNPCCommon::CollideReview(); |
| 553 | } |
| 554 | return; |
| 555 | } |
| 556 | |
| 557 | void zNPCVillager::SelfSetup() |
| 558 | { |
nothing calls this directly
no test coverage detected