TODO: MTS: only found in this file. Returns a random medium sized explosion
| 2409 | // TODO: MTS: only found in this file. |
| 2410 | // Returns a random medium sized explosion |
| 2411 | int GetRandomMediumExplosion() { |
| 2412 | int choices[] = {MED_EXPLOSION_INDEX, MED_EXPLOSION_INDEX2, MED_EXPLOSION_INDEX3}; |
| 2413 | int pick = ps_rand() % 3; |
| 2414 | return (choices[pick]); |
| 2415 | } |
| 2416 | int GetRandomSmallExplosion() { |
| 2417 | int choices[] = {SMALL_EXPLOSION_INDEX, SMALL_EXPLOSION_INDEX2}; |
| 2418 | int pick = ps_rand() % 2; |
no test coverage detected