-Fixed a bug with moveTo keyword (cf: Doomed necromancer test)
This commit is contained in:
wagic.the.homebrew
2009-02-05 13:34:40 +00:00
parent ba3b272558
commit 9439d5e6dd
4 changed files with 24 additions and 4 deletions

View File

@@ -164,7 +164,7 @@ class AZoneMover:public TargetAbility{
public:
string destinationZone;
AZoneMover(int _id, MTGCardInstance * _source, TargetChooser * _tc,string destZone, ManaCost * _cost = NULL):TargetAbility(_id,_source, _tc,_cost){
AZoneMover(int _id, MTGCardInstance * _source, TargetChooser * _tc,string destZone, ManaCost * _cost = NULL, int _tap=0):TargetAbility(_id,_source, _tc,_cost,0,_tap){
destinationZone = destZone;
}