| 54 | } |
| 55 | |
| 56 | S32 zNPCGoalTikiIdle::Enter(F32, void*) |
| 57 | { |
| 58 | zNPCTiki* tiki = (zNPCTiki*)GetOwner(); |
| 59 | |
| 60 | if (tiki->SelfType() == NPC_TYPE_TIKI_THUNDER) |
| 61 | { |
| 62 | tmr_wait = 0.1f; |
| 63 | } |
| 64 | else if (!tiki->nav_dest) |
| 65 | { |
| 66 | tmr_wait = 2.0f; |
| 67 | } |
| 68 | else |
| 69 | { |
| 70 | tmr_wait = zMovePointGetDelay(tiki->nav_dest); |
| 71 | } |
| 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | S32 zNPCGoalTikiPatrol::Enter(F32, void*) |
| 77 | { |
nothing calls this directly
no test coverage detected