| 1202 | } |
| 1203 | |
| 1204 | void zNPCGoalDEVAnimSpin::ASTUnmolestAnim() |
| 1205 | { |
| 1206 | zNPCCommon* npc = (zNPCCommon*)psyche->clt_owner; |
| 1207 | |
| 1208 | if (animWeMolested == 0) |
| 1209 | { |
| 1210 | return; |
| 1211 | } |
| 1212 | |
| 1213 | xAnimState* state = npc->AnimFindState(animWeMolested); |
| 1214 | state->Flags = origAnimFlags; |
| 1215 | |
| 1216 | animWeMolested = 0; |
| 1217 | origAnimFlags = 0; |
| 1218 | } |
| 1219 | |
| 1220 | S32 zNPCGoalDEVHero::Enter(F32 dt, void* updCtxt) |
| 1221 | { |
nothing calls this directly
no test coverage detected