| 3692 | } |
| 3693 | |
| 3694 | S32 zNPCGoalStunned::InputInfo(NPCStunInfo* info) |
| 3695 | { |
| 3696 | zNPCRobot* npc = ((zNPCRobot*)(psyche->clt_owner)); |
| 3697 | flg_info = 0x10; |
| 3698 | F32 stunTime = npc->tmr_stunned; |
| 3699 | F32 infoStun = info->tym_stuntime; |
| 3700 | stunTime = (stunTime > infoStun) ? stunTime : infoStun; |
| 3701 | npc->tmr_stunned = stunTime; |
| 3702 | return flg_info; |
| 3703 | } |
| 3704 | |
| 3705 | S32 zNPCGoalPatCarry::Enter(F32 dt, void* updCtxt) |
| 3706 | { |
no test coverage detected