| 425 | } |
| 426 | |
| 427 | size_t NpcScriptState::getCurrentStateSym() |
| 428 | { |
| 429 | if (m_CurrentState.valid) |
| 430 | { |
| 431 | if (m_CurrentState.prgState != EPrgStates::NPC_PRGAISTATE_INVALID) |
| 432 | return static_cast<size_t>(m_CurrentState.prgState); |
| 433 | |
| 434 | return m_CurrentState.symIndex; |
| 435 | } |
| 436 | |
| 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | void NpcScriptState::reinitRoutine() |
| 441 | { |
nothing calls this directly
no outgoing calls
no test coverage detected