This removes the compilation error introduced with r4237. I needed this in place to make an iOS build.

This commit is contained in:
techdragon.nguyen@gmail.com
2012-02-01 04:17:30 +00:00
parent 2f408664ad
commit ac992675da
4 changed files with 17 additions and 23 deletions

View File

@@ -25,8 +25,6 @@ bool AIPlayerBakaB::payTheManaCost(ManaCost * cost, MTGCardInstance * target, ve
return AIPlayerBaka::payTheManaCost(cost, target, gotPayments);
}
int AIPlayerBakaB::getEfficiency(OrderedAIAction * action)
{
return AIPlayerBaka::getEfficiency(action);
@@ -37,17 +35,6 @@ ManaCost * AIPlayerBakaB::getPotentialMana(MTGCardInstance * target)
return AIPlayerBaka::getPotentialMana(target);
}
vector<MTGAbility*> AIPlayerBakaB::canPayMana(MTGCardInstance * target,ManaCost * cost)
{
return AIPlayerBaka::canPayMana(target, cost);
}
vector<MTGAbility*> AIPlayerBakaB::canPaySunBurst(ManaCost * cost)
{
return AIPlayerBaka::canPaySunBurst(cost);
}
int AIPlayerBakaB::CanHandleCost(ManaCost * cost)
{
return AIPlayerBaka::CanHandleCost(cost);