mirror of
https://github.com/vcmi/vcmi.git
synced 2025-08-13 19:54:17 +02:00
Merge pull request #1821 from rilian-la-te/remove-cove-hardcode
CTownHandler: remove hardcoded Cove grail
This commit is contained in:
@@ -485,15 +485,6 @@ void CTownHandler::addBonusesForVanilaBuilding(CBuilding * building) const
|
|||||||
{
|
{
|
||||||
b = createBonus(building, Bonus::MORALE, +1);
|
b = createBonus(building, Bonus::MORALE, +1);
|
||||||
}
|
}
|
||||||
else if(building->bid == BuildingID::GRAIL
|
|
||||||
&& building->town->faction != nullptr
|
|
||||||
&& boost::algorithm::ends_with(building->town->faction->getJsonKey(), ":cove"))
|
|
||||||
{
|
|
||||||
static TPropagatorPtr allCreaturesPropagator(new CPropagatorNodeType(CBonusSystemNode::ENodeTypes::ALL_CREATURES));
|
|
||||||
static auto factionLimiter = std::make_shared<CreatureFactionLimiter>(building->town->faction->getIndex());
|
|
||||||
b = createBonus(building, Bonus::NO_TERRAIN_PENALTY, 0, allCreaturesPropagator);
|
|
||||||
b->addLimiter(factionLimiter);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user