| 1645 | } |
| 1646 | |
| 1647 | void zNPCDutchman::start_fight() |
| 1648 | { |
| 1649 | if (flag.fighting == 0 && life <= 0) |
| 1650 | { |
| 1651 | flag.fighting = 1; |
| 1652 | psy_instinct->GoalSet(0, 0); |
| 1653 | zCameraDisableTracking(CO_BOSS); |
| 1654 | boss_cam.start(globals.camera); |
| 1655 | boss_cam.set_targets((xVec3&)globals.player.ent.model->Mat->pos, (xVec3&)model->Mat->pos, |
| 1656 | 2.0f); |
| 1657 | } |
| 1658 | } |
| 1659 | |
| 1660 | void zNPCDutchman::set_life(S32 lf) |
| 1661 | { |
nothing calls this directly
no test coverage detected