Merge branch 'develop' of github.com:MegaGlest/megaglest-source into develop

This commit is contained in:
titiger 2014-12-22 00:12:22 +01:00
commit 6ef709e888
1 changed files with 6 additions and 1 deletions

View File

@ -1459,7 +1459,12 @@ void TotalUpgrade::deapply(int sourceUnitId, const UpgradeTypeBase *ut,int destU
}
}
if(removedBoost == false) {
printf("\n\n!!!!!! de-apply boost NOT FOUND!\n\n");
printf("\n\n!!!!!! de-apply boost NOT FOUND for sourceUnitId = %d, destUnitId = %d\n%s\n\nCurrent Boosts:\n",
sourceUnitId,destUnitId,ut->toString().c_str());
for(unsigned int index = 0; index < boostUpgrades.size(); ++index) {
TotalUpgrade *boost = boostUpgrades[index];
printf("\nBoost #%d\n%s\n",index,boost->toString().c_str());
}
}
}