mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-17 23:21:05 +00:00
Don't destroy all of your balloons in 3 tics
This commit is contained in:
parent
04212cc506
commit
7407c9a8dc
1 changed files with 2 additions and 1 deletions
|
@ -1979,7 +1979,8 @@ void K_ExplodePlayer(player_t *player, mobj_t *source, mobj_t *inflictor) // A b
|
||||||
player->kartstuff[k_sneakertimer] = 0;
|
player->kartstuff[k_sneakertimer] = 0;
|
||||||
player->kartstuff[k_driftboost] = 0;
|
player->kartstuff[k_driftboost] = 0;
|
||||||
|
|
||||||
if (G_BattleGametype())
|
// This is the only part that SHOULDN'T combo :VVVVV
|
||||||
|
if (G_BattleGametype() && !(player->powers[pw_flashing] > 0 || player->kartstuff[k_squishedtimer] > 0 || player->kartstuff[k_spinouttimer] > 0))
|
||||||
{
|
{
|
||||||
if (source && source->player && player != source->player)
|
if (source && source->player && player != source->player)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue