taunt_DelayTime() Returns the delay time between taunts
| 79 | // |
| 80 | // Returns the delay time between taunts |
| 81 | float taunt_DelayTime(void) { |
| 82 | if (Audio_taunt_delay_time < 0) |
| 83 | Audio_taunt_delay_time = 5.0f; |
| 84 | |
| 85 | return Audio_taunt_delay_time; |
| 86 | } |
| 87 | |
| 88 | // taunt_SetDelayTime() |
| 89 | // |
no outgoing calls
no test coverage detected