mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Bubble attacks no longer bump
Causes desync
This commit is contained in:
parent
a2f61c8f2b
commit
e96cf41fab
1 changed files with 2 additions and 2 deletions
|
|
@ -746,7 +746,7 @@ static boolean PIT_CheckThing(mobj_t *thing)
|
||||||
|
|
||||||
// Player Damage
|
// Player Damage
|
||||||
P_DamageMobj(tmthing, thing, ((thing->type == MT_BUBBLESHIELD) ? thing->target : thing), 1);
|
P_DamageMobj(tmthing, thing, ((thing->type == MT_BUBBLESHIELD) ? thing->target : thing), 1);
|
||||||
K_KartBouncing(tmthing, thing, false, true);
|
//K_KartBouncing(tmthing, thing, false, true); // Causes desync
|
||||||
S_StartSound(thing, sfx_s3k44);
|
S_StartSound(thing, sfx_s3k44);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
@ -795,7 +795,7 @@ static boolean PIT_CheckThing(mobj_t *thing)
|
||||||
|
|
||||||
// Player Damage
|
// Player Damage
|
||||||
P_DamageMobj(thing, tmthing, ((tmthing->type == MT_BUBBLESHIELD) ? tmthing->target : tmthing), 1);
|
P_DamageMobj(thing, tmthing, ((tmthing->type == MT_BUBBLESHIELD) ? tmthing->target : tmthing), 1);
|
||||||
K_KartBouncing(thing, tmthing, false, true);
|
//K_KartBouncing(thing, tmthing, false, true);
|
||||||
S_StartSound(tmthing, sfx_s3k44);
|
S_StartSound(tmthing, sfx_s3k44);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue