1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-09-16 09:26:28 +02:00

Compilation fix. This will be released as VCMI 0.95b.

This commit is contained in:
DjWarmonger
2014-05-02 12:19:50 +02:00
parent fb5152254d
commit 1dbc0c7177

View File

@@ -581,7 +581,7 @@ void CKingdomInterface::generateMinesList(const std::vector<const CGObjectInstan
std::vector<const CGTownInstance*> towns = LOCPLINT->cb->getTownsInfo(true);
for(auto & town : towns)
{
totalIncome += town->dailyIncome();
totalIncome += town->dailyIncome()[Res::GOLD];
}
for (int i=0; i<7; i++)
{