1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-03 13:01:33 +02:00

Only apply normal mana regen for retreated heroes in taverns (h3 logic)

This commit is contained in:
Ivan Savenko 2023-11-12 19:30:33 +02:00
parent bbd3312705
commit 35ee8c1397

View File

@ -126,7 +126,7 @@ void TavernHeroesPool::onNewDay()
continue;
hero.second->setMovementPoints(hero.second->movementPointsLimit(true));
hero.second->mana = hero.second->manaLimit();
hero.second->mana = hero.second->getManaNewTurn();
}
}