mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't get points from killing other players in Break the Capsules or boss mode
This commit is contained in:
parent
85a101cbd7
commit
3dd7ece9db
1 changed files with 5 additions and 1 deletions
|
|
@ -2263,7 +2263,11 @@ boolean P_DamageMobj(mobj_t *target, mobj_t *inflictor, mobj_t *source, INT32 da
|
|||
|
||||
K_TryHurtSoundExchange(target, source);
|
||||
|
||||
K_BattleAwardHit(source->player, player, inflictor, damage);
|
||||
if (K_Cooperative() == false)
|
||||
{
|
||||
K_BattleAwardHit(source->player, player, inflictor, damage);
|
||||
}
|
||||
|
||||
K_TakeBumpersFromPlayer(source->player, player, damage);
|
||||
|
||||
if (damagetype & DMG_STEAL)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue