tiny change, just changed a line to allow ninjutsu to be targeted.
This commit is contained in:
@@ -1212,7 +1212,10 @@ public:
|
|||||||
|
|
||||||
int resolve()
|
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);
|
source->controller()->game->temp);
|
||||||
Spell * spell = NEW Spell(copy);
|
Spell * spell = NEW Spell(copy);
|
||||||
spell->resolve();
|
spell->resolve();
|
||||||
|
|||||||
Reference in New Issue
Block a user