mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Only do touch damage when confirming a bump
Should fix the mcdonalds rings
This commit is contained in:
parent
cfda66103d
commit
03149d7810
1 changed files with 4 additions and 2 deletions
|
|
@ -1299,8 +1299,10 @@ static boolean PIT_CheckThing(mobj_t *thing)
|
||||||
P_DamageMobj(tmthing, thing, thing, 1, DMG_WIPEOUT|DMG_STEAL);
|
P_DamageMobj(tmthing, thing, thing, 1, DMG_WIPEOUT|DMG_STEAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
K_KartBouncing(mo1, mo2, zbounce, false);
|
if (K_KartBouncing(mo1, mo2, zbounce, false))
|
||||||
K_PvPTouchDamage(mo1, mo2);
|
{
|
||||||
|
K_PvPTouchDamage(mo1, mo2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue