1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-29 00:41:38 +02:00

Cleaned some logs.

This commit is contained in:
DjWarmonger
2014-11-01 09:52:56 +01:00
parent b61b79b458
commit d280b0ac9f
3 changed files with 4 additions and 10 deletions

View File

@ -1796,7 +1796,6 @@ void CGameState::initTowns()
}
}
//init spells
logGlobal->debugStream() << "\t\tTown init spells";
vti->spells.resize(GameConstants::SPELL_LEVELS);
for(ui32 z=0; z<vti->obligatorySpells.size();z++)
@ -1805,7 +1804,6 @@ void CGameState::initTowns()
vti->spells[s->level-1].push_back(s->id);
vti->possibleSpells -= s->id;
}
logGlobal->debugStream() << "\t\tTown init spells2";
while(vti->possibleSpells.size())
{
ui32 total=0;
@ -1837,7 +1835,6 @@ void CGameState::initTowns()
vti->possibleSpells.clear();
if(vti->getOwner() != PlayerColor::NEUTRAL)
getPlayer(vti->getOwner())->towns.push_back(vti);
logGlobal->debugStream() << "\t\tTown init spells3";
}
}