diff --git a/projects/mtg/include/GameStateShop.h b/projects/mtg/include/GameStateShop.h index 07e05bed6..e41b1f523 100644 --- a/projects/mtg/include/GameStateShop.h +++ b/projects/mtg/include/GameStateShop.h @@ -25,7 +25,7 @@ #define SHOP_SLOTS 11 #define SHOP_ITEMS SHOP_SLOTS+1 -#define LIST_FADEIN 11 +#define LIST_FADEIN 15 struct ShopBooster{ MTGSetInfo * mainSet; diff --git a/projects/mtg/src/CardGui.cpp b/projects/mtg/src/CardGui.cpp index 54246285a..987f29537 100644 --- a/projects/mtg/src/CardGui.cpp +++ b/projects/mtg/src/CardGui.cpp @@ -301,6 +301,9 @@ void CardGui::alternateRender(MTGCard * card, const Pos& pos){ case Constants::RARITY_C: sprintf(buf,_("%s Common").c_str(),setlist[card->setId].c_str()); break; + case Constants::RARITY_L: + sprintf(buf,_("%s Land").c_str(),setlist[card->setId].c_str()); + break; default: sprintf(buf,"%s",setlist[card->setId].c_str()); break;