1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-01-12 02:28:11 +02:00
This commit is contained in:
Frank Zago 2011-09-24 00:32:55 +00:00
parent d113517db4
commit c481177515

View File

@ -1655,7 +1655,7 @@ void CGameHandler::takeCreatures(int objid, const std::vector<CStackBasicDescrip
if(i->second->type == sbd.type)
{
TQuantity take = std::min(sbd.count - collected, i->second->count); //collect as much cres as we can
changeStackCount(StackLocation(obj, i->first), take, false);
changeStackCount(StackLocation(obj, i->first), -take, false);
collected += take;
break;
}