Battle: point limit cap 20 -> 16

This commit is contained in:
James R 2024-01-16 23:32:06 -08:00
parent 9e4b716ed1
commit 54cf037eff

View file

@ -13359,9 +13359,9 @@ UINT32 K_PointLimitForGametype(void)
} }
} }
if (ptsCap > 20) if (ptsCap > 16)
{ {
ptsCap = 20; ptsCap = 16;
} }
} }