mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-04 23:22:36 +00:00
P_CheckRaceGriefing: Fix typo that rendered antigrief ineffective
This commit is contained in:
parent
d09cfe6704
commit
ee3bf6d117
1 changed files with 1 additions and 1 deletions
|
|
@ -4629,7 +4629,7 @@ void P_CheckRaceGriefing(player_t *player, boolean dopunishment)
|
|||
player->griefValue--;
|
||||
}
|
||||
|
||||
if (dopunishment && player->griefValue > griefMax)
|
||||
if (dopunishment && player->griefValue >= griefMax)
|
||||
{
|
||||
if (player->griefStrikes < 3)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue