diff --git a/indra/newview/llworldmapmessage.cpp b/indra/newview/llworldmapmessage.cpp index fef2fb6e295dfbff1edf9fc595cfe12dd93776d2..36ddf55ccdd97b5e59142c75ec7507ce2aa37f31 100755 --- a/indra/newview/llworldmapmessage.cpp +++ b/indra/newview/llworldmapmessage.cpp @@ -200,7 +200,10 @@ void LLWorldMapMessage::processMapBlockReply(LLMessageSystem* msg, void**) U32 y_world = (U32)(y_regions) * REGION_WIDTH_UNITS; // name shouldn't be empty, see EXT-4568 - llassert(!name.empty()); + if (name.empty()) + { + LL_WARNS("World Map") << "MapBlockReply returned an empty region name; not inserting in the world map" << LL_ENDL; + } // Insert that region in the world map, if failure, flag it as a "null_sim" if (!(LLWorldMap::getInstance()->insertRegion(x_world, y_world, x_size, y_size, name, image_id, (U32)accesscode, region_flags)))