mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix modeattacking being assumed to be boolean in K_CanChangeRules
This commit is contained in:
parent
ce020d7207
commit
735c487b65
1 changed files with 1 additions and 1 deletions
|
|
@ -727,7 +727,7 @@ boolean K_CanChangeRules(boolean allowdemos)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (modeattacking == true)
|
||||
if (modeattacking != ATTACKING_NONE)
|
||||
{
|
||||
// Don't cheat the rules of Time Trials!
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue