Use display name instead of editor ID for World::getCellName

Doesn't affect Morrowind cells, but allows TES4+ cells to have legible names
macos_ci_fix
Alexei Kotov 1 year ago
parent c1f7a9c258
commit 88749b03d4

@ -660,8 +660,8 @@ namespace MWWorld
std::string_view World::getCellName(const MWWorld::Cell& cell) const
{
if (!cell.isExterior() || !cell.getNameId().empty())
return cell.getNameId();
if (!cell.isExterior() || !cell.getDisplayName().empty())
return cell.getDisplayName();
return ESM::visit(ESM::VisitOverload{
[&](const ESM::Cell& cellIn) -> std::string_view { return getCellName(&cellIn); },

Loading…
Cancel
Save