diff --git a/projects/mtg/src/MTGCardInstance.cpp b/projects/mtg/src/MTGCardInstance.cpp index a4c4a2554..8318d8dea 100644 --- a/projects/mtg/src/MTGCardInstance.cpp +++ b/projects/mtg/src/MTGCardInstance.cpp @@ -100,8 +100,10 @@ void MTGCardInstance::copy(MTGCardInstance * card) setText(""); //The text is retrieved from the data anyways setName(data->name); - power = data->power; - toughness = data->toughness; + power = data->power;//layer 7a + toughness = data->toughness;//layer 7a + power += pbonus;//layer 7b + toughness += tbonus;//layer 7b life = toughness; lifeOrig = life; magicText = data->magicText;