| 4626 | } |
| 4627 | |
| 4628 | void zNPCGoalTubeAttack::MaryzFury() |
| 4629 | { |
| 4630 | zNPCTubelet* npc = *(zNPCTubelet**)(&psyche->clt_owner); |
| 4631 | NPCHazard* haz = HAZ_Acquire(); |
| 4632 | if (haz != NULL) |
| 4633 | { |
| 4634 | haz->ConfigHelper(NPC_HAZ_TUBELETBLAST); |
| 4635 | haz->SetNPCOwner(npc); |
| 4636 | xVec3* center = xEntGetCenter(npc); |
| 4637 | haz->Start(center, -1.0f); |
| 4638 | U32 sndID = xStrHash("Tube_pop"); |
| 4639 | xSndPlay3D(sndID, 0.77f, 0.0f, 0x80, 0, &haz->pos_hazard, 5.0f, 15.0f, SND_CAT_GAME, 0.0f); |
| 4640 | } |
| 4641 | } |
| 4642 | |
| 4643 | void zNPCGoalTubeAttack::MaryzBlessing() |
| 4644 | { |
nothing calls this directly
no test coverage detected