Fix bug #1248 - commanders sometimes can't lead up to the max number of units for their rank.

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@9406 4a71c877-e1ca-e34f-864e-861f7616d084
master
Guangcong Luo 2010-01-22 19:49:30 +00:00 committed by Git SVN Gateway
parent 5ad6596be9
commit 38fd6be936
1 changed files with 1 additions and 1 deletions

View File

@ -3200,7 +3200,7 @@ unsigned int getDroidLevel(const DROID* psDroid)
unsigned int i;
// Commanders don't need as much kills for ranks in multiplayer
if (isCommander && cmdGetDroidMultiExpBoost() && bMultiPlayer)
if (isCommander && cmdGetDroidMultiExpBoost())
{
numKills *= 2;
}