From 5c67d11aa656d3d330f0fd3a7a5f1af10641b7bd Mon Sep 17 00:00:00 2001 From: valfieri Date: Fri, 6 Sep 2019 08:41:27 +0200 Subject: [PATCH] fix spaces --- projects/mtg/src/MTGAbility.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index 999490629..16ee47ffa 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -4574,11 +4574,11 @@ int AbilityFactory::abilityEfficiency(MTGAbility * a, Player * p, int mode, Targ if (AAMover * aam = dynamic_cast(a)) { MTGGameZone * z = aam->destinationZone(target); - if ((tc && tc->targetsZone(p->game->library)) || (tc && tc->targetsZone(p->game->graveyard)) || (tc && tc->targetsZone(p->game->hand))) - { + if ((tc && tc->targetsZone(p->game->library)) || (tc && tc->targetsZone(p->game->graveyard)) || (tc && tc->targetsZone(p->game->hand))) + { if (z == p->game->hand || z == p->game->inPlay) return BAKA_EFFECT_GOOD; - } + } return BAKA_EFFECT_BAD; //TODO }