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.

This commit is contained in:
omegablast2002@yahoo.com
2011-10-29 11:27:40 +00:00
parent a48011fe2c
commit 1806e5463d

View File

@@ -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;
}