| 27 | } |
| 28 | |
| 29 | S32 zNPCGoalCommon::Resume(F32 dt, void* updCtxt) |
| 30 | { |
| 31 | S32 gid = psyche->GIDOfPending(); |
| 32 | |
| 33 | if (((flg_npcgauto & 0x2) && (flg_npcgauto & 0x4) && gid == 0) || gid == GetID()) |
| 34 | { |
| 35 | DoAutoAnim(NPC_GSPOT_RESUME, 0); |
| 36 | } |
| 37 | |
| 38 | return xGoal::Resume(dt, updCtxt); |
| 39 | } |
| 40 | |
| 41 | S32 zNPCGoalCommon::PreCalc(F32 dt, void* updCtxt) |
| 42 | { |
no test coverage detected