|
|
@ -593,7 +593,10 @@ namespace MWGui
|
|
|
|
|
|
|
|
|
|
|
|
for (std::vector<std::pair<std::string, int> >::const_iterator it = itemOwners.begin(); it != itemOwners.end(); ++it)
|
|
|
|
for (std::vector<std::pair<std::string, int> >::const_iterator it = itemOwners.begin(); it != itemOwners.end(); ++it)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ret += std::string("\nStolen from ") + it->first;
|
|
|
|
if (it->second == std::numeric_limits<int>::max())
|
|
|
|
|
|
|
|
ret += std::string("\nStolen from ") + it->first; // for legacy (ESS) savegames
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
ret += std::string("\nStolen ") + MyGUI::utility::toString(it->second) + " from " + it->first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ret += getMiscString(cellref.getGlobalVariable(), "Global");
|
|
|
|
ret += getMiscString(cellref.getGlobalVariable(), "Global");
|
|
|
|