Battle: cap point limit at 20

This commit is contained in:
James R 2024-01-13 20:00:14 -08:00
parent ce1fe0028a
commit 9c7e8b8be3

View file

@ -13328,6 +13328,11 @@ UINT32 K_PointLimitForGametype(void)
ptsCap += 4;
}
}
if (ptsCap > 20)
{
ptsCap = 20;
}
}
return ptsCap;