revert some changes which were meant for debugging only

This commit is contained in:
titiger 2017-02-01 23:58:00 +01:00
parent d038a376ae
commit 9cc5a7566a
1 changed files with 1 additions and 8 deletions

View File

@ -382,14 +382,7 @@ void UnitUpdater::spawnAttack(Unit *unit,string spawnUnit,int spawnUnitcount,int
// world->getStats()->produce(unit->getFactionIndex(),spawned->getType()->getCountUnitProductionInStats());
const CommandType *ct= spawned->getType()->getFirstAttackCommand(unit->getTargetField());
if(ct == NULL){
Cell* cell=map->getCell(targetPos);
Field targetField=unit->getTargetField();
Unit* cellUnit=cell->getUnit(targetField);
ct= spawned->computeCommandType(targetPos,cellUnit);
ct= spawned->computeCommandType(targetPos,map->getCell(targetPos)->getUnit(unit->getTargetField()));
}
if(ct != NULL){
if(SystemFlags::getSystemSettingType(SystemFlags::debugUnitCommands).enabled) SystemFlags::OutputDebug(SystemFlags::debugUnitCommands,"In [%s::%s Line: %d]\n",__FILE__,__FUNCTION__,__LINE__);