mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-24 22:14:36 +02:00
Merge pull request #336 from dydzio0614/blackmarketfix
Fix black market behavior to match H3
This commit is contained in:
commit
a9c10633ab
@ -693,12 +693,20 @@ CMarketplaceWindow::CMarketplaceWindow(const IMarket *Market, const CGHeroInstan
|
||||
}
|
||||
else
|
||||
{
|
||||
switch (market->o->ID)
|
||||
switch(market->o->ID)
|
||||
{
|
||||
break; case Obj::BLACK_MARKET: title = CGI->generaltexth->allTexts[349];
|
||||
break; case Obj::TRADING_POST: title = CGI->generaltexth->allTexts[159];
|
||||
break; case Obj::TRADING_POST_SNOW: title = CGI->generaltexth->allTexts[159];
|
||||
break; default: title = market->o->getObjectName();
|
||||
case Obj::BLACK_MARKET:
|
||||
title = CGI->generaltexth->allTexts[349];
|
||||
sliderNeeded = false;
|
||||
break;
|
||||
case Obj::TRADING_POST:
|
||||
title = CGI->generaltexth->allTexts[159];
|
||||
break;
|
||||
case Obj::TRADING_POST_SNOW:
|
||||
title = CGI->generaltexth->allTexts[159];
|
||||
break;
|
||||
default:
|
||||
title = market->o->getObjectName();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user