diff options
Diffstat (limited to 'indra')
| -rwxr-xr-x | indra/newview/llviewerparcelmgr.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp index 7c94442f09..2f4365036c 100755 --- a/indra/newview/llviewerparcelmgr.cpp +++ b/indra/newview/llviewerparcelmgr.cpp @@ -1562,6 +1562,7 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  		if (parcel == parcel_mgr.mAgentParcel)  		{ +			// new agent parcel  			S32 bitmap_size =	parcel_mgr.mParcelsPerEdge  								* parcel_mgr.mParcelsPerEdge  								/ 8; @@ -1591,6 +1592,11 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  				}  			}  		} +		else if (local_id == parcel_mgr.mAgentParcel->getLocalID()) +		{ +			// updated agent parcel +			parcel_mgr.mAgentParcel->unpackMessage(msg); +		}  	}  	// Handle updating selections, if necessary.  | 
