| 245 | } |
| 246 | |
| 247 | void zNPCGoalLoopAnim::UnmolestAnim() |
| 248 | { |
| 249 | zNPCCommon* npc = (zNPCCommon*)psyche->clt_owner; |
| 250 | |
| 251 | if (animWeMolested == 0) |
| 252 | { |
| 253 | return; |
| 254 | } |
| 255 | |
| 256 | xAnimState* state = npc->AnimFindState(animWeMolested); |
| 257 | state->Flags = origAnimFlags; |
| 258 | |
| 259 | animWeMolested = 0; |
| 260 | origAnimFlags = 0; |
| 261 | } |
| 262 | |
| 263 | void zNPCGoalLoopAnim::LoopCountSet(S32 num) |
| 264 | { |
nothing calls this directly
no test coverage detected