| 115 | } |
| 116 | |
| 117 | void zNPCGoalJellyBumped::StreakPrep() |
| 118 | { |
| 119 | zNPCJelly* npc = (zNPCJelly*)psyche->clt_owner; |
| 120 | if (npc->SelfType() == 'NTA1') |
| 121 | { |
| 122 | streakID = NPCC_StreakCreate(NPC_STRK_TOSSEDJELLYBLUE); |
| 123 | } |
| 124 | else |
| 125 | { |
| 126 | streakID = NPCC_StreakCreate(NPC_STRK_TOSSEDJELLY); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | void zNPCGoalJellyBumped::StreakDone() |
| 131 | { |
nothing calls this directly
no test coverage detected