Fix for issue #448
This commit is contained in:
Anthony Calosa
2016-06-09 20:06:39 +08:00
parent 06fdf3f0a5
commit 3ee341cc4e

View File

@@ -100,8 +100,10 @@ void MTGCardInstance::copy(MTGCardInstance * card)
setText(""); //The text is retrieved from the data anyways setText(""); //The text is retrieved from the data anyways
setName(data->name); setName(data->name);
power = data->power; power = data->power;//layer 7a
toughness = data->toughness; toughness = data->toughness;//layer 7a
power += pbonus;//layer 7b
toughness += tbonus;//layer 7b
life = toughness; life = toughness;
lifeOrig = life; lifeOrig = life;
magicText = data->magicText; magicText = data->magicText;