1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

Remove MetaString method that can't be used with modded objects

This commit is contained in:
Ivan Savenko
2024-12-24 15:04:01 +00:00
parent ec25eb557b
commit 101fd694b9
4 changed files with 3 additions and 9 deletions

View File

@@ -217,7 +217,7 @@ void CGDwelling::onHeroVisit( const CGHeroInstance * h ) const
iw.type = EInfoWindowMode::AUTO;
iw.player = h->tempOwner;
iw.text.appendLocalString(EMetaText::ADVOB_TXT, 44); //{%s} \n\n The camp is deserted. Perhaps you should try next week.
iw.text.replaceName(ID);
iw.text.replaceName(ID, subID);
cb->sendAndApply(iw);
return;
}
@@ -260,7 +260,7 @@ void CGDwelling::onHeroVisit( const CGHeroInstance * h ) const
else if(ID == Obj::REFUGEE_CAMP)
{
bd.text.appendLocalString(EMetaText::ADVOB_TXT, 35); //{%s} Would you like to recruit %s?
bd.text.replaceName(ID);
bd.text.replaceName(ID, subID);
for(const auto & elem : creatures)
bd.text.replaceNamePlural(elem.second[0]);
}