Increase the amount of time between the switch to the Rankings half of intermission and ranking is calculated a tad.

Turns out it wasn't taking the length of the level-to-rankings switch animation into account!
This commit is contained in:
toaster 2018-08-26 17:31:04 +01:00
parent 1038028468
commit fc6b0b23ec

View file

@ -617,7 +617,7 @@ void Y_Ticker(void)
if (!data.match.rankingsmode && (intertic >= sorttic + 8))
Y_CalculateMatchData(1, Y_CompareRank);
if (data.match.rankingsmode && intertic > sorttic+(2*TICRATE))
if (data.match.rankingsmode && intertic > sorttic+16+(2*TICRATE))
{
INT32 q=0,r=0;
boolean kaching = true;