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:
omegablast2002@yahoo.com
2010-10-31 16:55:05 +00:00
parent 4cfb266d14
commit 777098f763
4 changed files with 17 additions and 20 deletions

View File

@@ -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{