finally fixed Changeling abilities= keyword.

This commit is contained in:
omegablast2002@yahoo.com
2010-10-22 17:45:56 +00:00
parent f3449592de
commit 90fb03aba7
2 changed files with 22 additions and 0 deletions
+5
View File
@@ -307,8 +307,13 @@ void CardGui::alternateRender(MTGCard * card, const Pos& pos){
string s = "";
for (int i = card->data->types.size() - 1; i > 0; --i)
{
if(card->data->basicAbilities[55]){
s += _("Shapeshifter - ");
break;
}else{
s += _(Subtypes::subtypesList->find(card->data->types[i]));
s += _(" - ");
}
}
if(card->data->types.size())
s += _(Subtypes::subtypesList->find(card->data->types[0]));