diff --git a/lib/CCreatureHandler.h b/lib/CCreatureHandler.h index 01b0d6693..0958c6eea 100644 --- a/lib/CCreatureHandler.h +++ b/lib/CCreatureHandler.h @@ -33,10 +33,6 @@ class DLL_LINKAGE CCreature : public Creature, public CBonusSystemNode std::string modScope; std::string identifier; -// std::string nameRef; // reference name, stringID -// std::string nameSing;// singular name, e.g. Centaur -// std::string namePl; // plural name, e.g. Centaurs - std::string getNameTranslated() const override; std::string getNameTextID() const override; diff --git a/lib/CHeroHandler.h b/lib/CHeroHandler.h index 5e49545c5..7adc27c25 100644 --- a/lib/CHeroHandler.h +++ b/lib/CHeroHandler.h @@ -63,8 +63,6 @@ class DLL_LINKAGE CHero : public HeroType HeroTypeID ID; std::string identifier; std::string modScope; - std::string nameTextID; //name of hero - std::string biographyTextID; public: struct InitialArmyStack @@ -137,8 +135,6 @@ public: h & haveSpellBook; h & sex; h & special; - h & nameTextID; - h & biographyTextID; h & iconSpecSmall; h & iconSpecLarge; h & portraitSmall; @@ -159,7 +155,6 @@ class DLL_LINKAGE CHeroClass : public HeroClass HeroClassID id; // use getId instead std::string modScope; std::string identifier; // use getJsonKey instead - std::string nameTextID; public: enum EClassAffinity @@ -212,7 +207,6 @@ public: { h & modScope; h & identifier; - h & nameTextID; h & faction; h & id; h & defaultTavernChance; diff --git a/lib/CTownHandler.h b/lib/CTownHandler.h index ec1fd5158..aadb1f42a 100644 --- a/lib/CTownHandler.h +++ b/lib/CTownHandler.h @@ -186,7 +186,7 @@ class DLL_LINKAGE CFaction : public Faction friend class CBuilding; friend class CTown; - std::string modScope; //town name, by default - from TownName.txt + std::string modScope; std::string identifier; TFaction index;