mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +00:00
Podium bots don't drop rings if they bump
This commit is contained in:
parent
2806f1c085
commit
78a893666f
1 changed files with 6 additions and 0 deletions
|
|
@ -811,6 +811,12 @@ boolean K_PvPTouchDamage(mobj_t *t1, mobj_t *t2)
|
||||||
boolean stungT1 = false;
|
boolean stungT1 = false;
|
||||||
boolean stungT2 = false;
|
boolean stungT2 = false;
|
||||||
|
|
||||||
|
if (K_PodiumSequence() == true)
|
||||||
|
{
|
||||||
|
// Always regular bumps, no ring toss.
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Clash instead of damage if both parties have any of these conditions
|
// Clash instead of damage if both parties have any of these conditions
|
||||||
t1Condition = (K_IsBigger(t1, t2) == true)
|
t1Condition = (K_IsBigger(t1, t2) == true)
|
||||||
|| (t1->player->invincibilitytimer > 0)
|
|| (t1->player->invincibilitytimer > 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue