mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-12 02:28:11 +02:00
Fixed bug #175
This commit is contained in:
parent
88f209a86f
commit
476443101f
@ -793,7 +793,7 @@ void SComponent::init(Etype Type, int Subtype, int Val)
|
||||
subtitle = CGI->spellh->spells[Subtype].name;
|
||||
break;
|
||||
case creature:
|
||||
subtitle = boost::lexical_cast<std::string>(Val) + " " + CGI->creh->creatures[Subtype].*(val != 1 ? &CCreature::namePl : &CCreature::nameSing);
|
||||
subtitle = boost::lexical_cast<std::string>(Val) + " " + CGI->creh->creatures[Subtype].*(Val != 1 ? &CCreature::namePl : &CCreature::nameSing);
|
||||
break;
|
||||
case experience:
|
||||
description = CGI->generaltexth->allTexts[241];
|
||||
|
Loading…
Reference in New Issue
Block a user