fixed a bug where CHANGELING was not giving all creature subtypes. Changelings now set creature types in MTGCardInstance::initMTGCI
moved removed it from the setType function of cardprimitive. Issue: 501
This commit is contained in:
@@ -306,7 +306,7 @@ 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]){// this avoids drawing the list of subtypes on changeling cards.
|
||||
if(card->data->basicAbilities[Constants::CHANGELING]){// this avoids drawing the list of subtypes on changeling cards.
|
||||
s += _("Shapeshifter - ");
|
||||
break;
|
||||
}else{
|
||||
|
||||
Reference in New Issue
Block a user