From 1806e5463d7961bfa0c6630495927a880eb331d9 Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Sat, 29 Oct 2011 11:27:40 +0000 Subject: [PATCH] got rid of restriction "fourth turn" it was incorrect from day one (opps), previous commit changed serra's avanger to "turn:7" which is actually your 4th turn. --- projects/mtg/src/MTGAbility.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index 7d61e0237..72f16fafb 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -282,11 +282,6 @@ int AbilityFactory::parseCastRestrictions(MTGCardInstance * card, Player * playe { restriction.push_back("type(creature|mybattlefield)~lessthan~type(creature|opponentbattlefield)"); } - check = restriction[i].find("fourth turn"); - if(check != string::npos) - { - restriction.push_back("turn:4"); - } } return 1; }