Don't allow 2x experience points in campaign games if it is supposed to be only for MP games.

Fixes ticket:562


git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@7685 4a71c877-e1ca-e34f-864e-861f7616d084
master
Buginator 2009-06-08 02:33:11 +00:00 committed by Git SVN Gateway
parent 61e9a25ea2
commit f2a6546000
1 changed files with 1 additions and 1 deletions

View File

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