bool CvTechInfo::isDisable() const
{
// Thomas SG - ES: Era Stopper START
if (!GC.isCCV_ERA_ANCIENT_ENABLED() && getEra() == 0)
{
return true;
}
if (!GC.isCCV_ERA_CLASSICAL_ENABLED() && getEra() == 1)
{
return true;
}
if (!GC.isCCV_ERA_MEDIEVAL_ENABLED() && getEra() == 2)
{
return true;
}
if (!GC.isCCV_ERA_RENAISSANCE_ENABLED() && getEra() == 3)
{
return true;
}
if (!GC.isCCV_ERA_INDUSTRIAL_ENABLED() && getEra() == 4)
{
return true;
}
if (!GC.isCCV_ERA_MODERN_ENABLED() && (getEra() == 5 || (getEra() == 6 && isRepeat())))
{
return true;
}
if (!GC.isCCV_ERA_FUTURE_ENABLED() && getEra() == 6 && !isRepeat())
{
return true;
}
// Thomas SG - ES: Era Stopper END
return m_bDisable;
}