add effeciency to use the reveal ability

aicode overrides this on resolve and it seems most cards that have this
has possitive effect
This commit is contained in:
Anthony Calosa
2017-02-11 22:04:20 +08:00
parent 3afcc7fdf9
commit 3776bff594

View File

@@ -657,6 +657,10 @@ int OrderedAIAction::getEfficiency()
{
efficiency += 55;
}
else if (dynamic_cast<GenericRevealAbility *>(a))
{
efficiency += 55;
}
SAFE_DELETE(transAbility);
return efficiency;
}