From 2b4c3a51aa31c4effc555e61b40f539aac79cb19 Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Sat, 9 Feb 2013 02:37:22 +0000 Subject: [PATCH] removed a condiational that was limiting blink ability. i left the portion commented out just incase i put it there becuase of a bug. but as far as i can see it doesn't seem to cause an issue to remove it. --- projects/mtg/src/AllAbilities.cpp | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/projects/mtg/src/AllAbilities.cpp b/projects/mtg/src/AllAbilities.cpp index e6836266c..e91e57139 100644 --- a/projects/mtg/src/AllAbilities.cpp +++ b/projects/mtg/src/AllAbilities.cpp @@ -4804,16 +4804,18 @@ void ABlink::resolveBlink() MTGCardInstance * _target = (MTGCardInstance *) target; if (_target) { - if(blinkhand && !_target->controller()->game->isInZone(_target,_target->controller()->game->hand)) - { - this->forceDestroy = 1; - return; - } - else if(!blinkhand && !_target->controller()->game->isInZone(_target,_target->controller()->game->battlefield)) - { - this->forceDestroy = 1; - return; - } + //going to comment this condiational out, i can't remember if i added this to fix some kind of bug + //which is why i plan on leaving it here. seems to work fine though without it. + //if(blinkhand && !_target->controller()->game->isInZone(_target,_target->controller()->game->hand)) + //{ + // this->forceDestroy = 1; + // return; + //} + //else if(!blinkhand && !_target->controller()->game->isInZone(_target,_target->controller()->game->battlefield)) + //{ + // this->forceDestroy = 1; + // return; + //} _target->controller()->game->putInZone(_target, _target->currentZone, _target->owner->game->exile); if(_target->isToken)