- Fixed an issue with maxCast targeting opponent
This commit is contained in:
wagic.the.homebrew@gmail.com
2011-02-16 14:35:49 +00:00
parent 88218a9822
commit db0c55b4dd
5 changed files with 68 additions and 14 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ class MTGGameZone {
static MTGGameZone * stringToZone(string zoneName, MTGCardInstance * source, MTGCardInstance * target);
static int zoneStringToId(string zoneName);
static MTGGameZone *intToZone(int zoneId, MTGCardInstance * source = NULL,MTGCardInstance * target = NULL);
static MTGGameZone *intToZone(int zoneId, Player * source, Player * target);
static MTGGameZone *intToZone(int zoneId, Player * source, Player * target = NULL);
bool needShuffle;
virtual const char * getName(){return "zone";};
virtual ostream& toString(ostream&) const;