tiny change, just changed a line to allow ninjutsu to be targeted.

This commit is contained in:
omegablast2002@yahoo.com
2011-03-30 04:13:28 +00:00
parent 948dd212a8
commit a645b06433

View File

@@ -1212,7 +1212,10 @@ public:
int resolve()
{
MTGCardInstance * copy = source->controller()->game->putInZone(source, source->controller()->game->hand,
MTGCardInstance * _target = (MTGCardInstance *) target;
if(!_target)
return 0;
MTGCardInstance * copy = _target->controller()->game->putInZone(_target,_target->currentZone,
source->controller()->game->temp);
Spell * spell = NEW Spell(copy);
spell->resolve();