diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index b6d80495e..5a90d3f3c 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -139,7 +139,7 @@ int MTGAbility::parseCastRestrictions(MTGCardInstance * card,Player * player,str size_t start = restriction[i].find(":", check); size_t end = restriction[i].find(" ", check); Turn = atoi(restriction[i].substr(start + 1, end - start - 1).c_str()); - if(game->turn < Turn) + if(game->turn < Turn-1) return 0; } check = restriction[i].find("casted a spell");