Don't use magic numbers for the LCT

This commit is contained in:
kaetemi 2014-09-09 08:16:44 +02:00
parent 0a2ce69818
commit f38bcfc1bd

View file

@ -2936,7 +2936,7 @@ void CNetworkConnection::initTicks()
_CurrentClientTick = 0;
_CurrentServerTick = 0;
_MsPerTick = 100;
_LCT = 1000;
_LCT = LCT;
}
void CNetworkConnection::reinit()