mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-10 19:40:23 +03:00
Fix MVM score calculation typo
Replaced semicolon with plus operator to allow score calculation for currency collected
This commit is contained in:
parent
ead900c862
commit
cd7ff9d05f
@ -16967,7 +16967,7 @@ int CTFGameRules::CalcPlayerScore( RoundStats_t *pRoundStats, CTFPlayer *pPlayer
|
||||
( pRoundStats->m_iStat[TFSTAT_TELEPORTS] / TF_SCORE_TELEPORTS_PER_POINT ) +
|
||||
( pRoundStats->m_iStat[TFSTAT_INVULNS] / TF_SCORE_INVULN ) +
|
||||
( pRoundStats->m_iStat[TFSTAT_REVENGE] / TF_SCORE_REVENGE ) +
|
||||
( pRoundStats->m_iStat[TFSTAT_BONUS_POINTS] / TF_SCORE_BONUS_POINT_DIVISOR );
|
||||
( pRoundStats->m_iStat[TFSTAT_BONUS_POINTS] / TF_SCORE_BONUS_POINT_DIVISOR ) +
|
||||
( pRoundStats->m_iStat[TFSTAT_CURRENCY_COLLECTED] / TF_SCORE_CURRENCY_COLLECTED );
|
||||
|
||||
if ( pPlayer )
|
||||
|
Loading…
x
Reference in New Issue
Block a user