Skip to content

Commit

Permalink
fix alien base naming
Browse files Browse the repository at this point in the history
uses markerName string with a trailing underscore
("STR_ALIEN_BASE_" for example)
  • Loading branch information
Warboy1982 committed Jun 14, 2016
1 parent 518a651 commit acd4eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Savegame/AlienBase.cpp
Expand Up @@ -103,7 +103,7 @@ void AlienBase::setId(int id)
*/
std::wstring AlienBase::getDefaultName(Language *lang) const
{
return lang->getString("STR_ALIEN_BASE_").arg(_id);
return lang->getString(_deployment->getMarkerName() + "_").arg(_id);
}

/**
Expand Down

0 comments on commit acd4eb3

Please sign in to comment.