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

Fix mantiss 1965

This commit is contained in:
AlexVinS
2015-08-25 12:16:47 +03:00
parent ae6d3c9138
commit 68e3948242

View File

@@ -221,7 +221,7 @@ void CStackWindow::CWindowSection::createStackInfo(bool showExp, bool showArt)
if (parent->info->stackNode != nullptr && parent->info->commander == nullptr)
{
//normal stack, not a commander and not non-existing stack (e.g. recruitment dialog)
pic->setAmount(parent->info->stackNode->count);
pic->setAmount(parent->info->creatureCount);
}
std::string visibleName;