diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index c8665e4bf..1adb7207b 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -1138,6 +1138,9 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG { oneShot = true; } + found = s.find("while "); + if (found != string::npos) + oneShot = false; Damageable * _target = NULL; if (spell)