From 2a4b0e28f03776c208fd30ec4601e87a3b365d21 Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Thu, 2 Dec 2010 17:06:20 +0000 Subject: [PATCH] another tweak, sorry! forgot i needed to compensate for removing the base by increasing the actual. --- projects/mtg/src/AIPlayer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/mtg/src/AIPlayer.cpp b/projects/mtg/src/AIPlayer.cpp index 426fbfe20..b58f34329 100644 --- a/projects/mtg/src/AIPlayer.cpp +++ b/projects/mtg/src/AIPlayer.cpp @@ -458,12 +458,12 @@ int AIAction::getEfficiency() if (suggestion == BAKA_EFFECT_BAD && p != target->controller() && target->has(a->abilitygranted)) { - efficiency += (15 * target->DangerRanking())/p->game->hand->nb_cards; + efficiency += (25 * target->DangerRanking())/p->game->hand->nb_cards; } if (!target->has(a->abilitygranted) && g->getCurrentGamePhase() == Constants::MTG_PHASE_COMBATBEGIN) { - efficiency += (15 * target->DangerRanking())/p->game->hand->nb_cards; + efficiency += (25 * target->DangerRanking())/p->game->hand->nb_cards; }