the vampire restriction checks 2 or more, i had it checking for 3 or more.
This commit is contained in:
@@ -45,9 +45,8 @@ int MTGAbility::allowedToCast(MTGCardInstance * card,Player * player)
|
||||
return 0;
|
||||
break;
|
||||
case VAMPIRES:
|
||||
|
||||
vamps = player->game->inPlay->countByType("vampire");
|
||||
if(vamps < 3)
|
||||
if(vamps < 2)
|
||||
return 0;
|
||||
break;
|
||||
case LESS_CREATURES:
|
||||
|
||||
Reference in New Issue
Block a user