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-861f7616d084master
parent
61e9a25ea2
commit
f2a6546000
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue