diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llprimitive/lldaeloader.cpp | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/indra/llprimitive/lldaeloader.cpp b/indra/llprimitive/lldaeloader.cpp index 720986a411..00bde8dbc3 100644 --- a/indra/llprimitive/lldaeloader.cpp +++ b/indra/llprimitive/lldaeloader.cpp @@ -2235,7 +2235,11 @@ std::string LLDAELoader::getElementLabel(daeElement *element)  		// retrieve index to distinguish items inside same parent  		size_t ind = 0;  		parent->getChildren().find(element, ind); -		index_string = "_" + boost::lexical_cast<std::string>(ind); + +		if (ind > 0) +		{ +			index_string = "_" + boost::lexical_cast<std::string>(ind); +		}  		// if parent has a name or ID, use it  		std::string name = parent->getAttribute("name"); | 
