diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-02-04 18:04:42 +0200 | 
|---|---|---|
| committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-02-04 18:04:42 +0200 | 
| commit | 2351809b5cb71d17461a6bec2041cbc1ad2efc91 (patch) | |
| tree | a04bca2f670c8f188e688ba3c41dca415b62f1de | |
| parent | 1dd32bb772bb2f0d6d4f3180965a8bdcf9c1000d (diff) | |
SL-14796 Resolved encountered merge issue
| -rw-r--r-- | indra/newview/llviewerparcelmgr.cpp | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/indra/newview/llviewerparcelmgr.cpp b/indra/newview/llviewerparcelmgr.cpp index d5365e4ee8..06172e366d 100644 --- a/indra/newview/llviewerparcelmgr.cpp +++ b/indra/newview/llviewerparcelmgr.cpp @@ -1715,9 +1715,6 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  			// Let interesting parties know about agent parcel change.  			LLViewerParcelMgr* instance = LLViewerParcelMgr::getInstance(); -			// Notify anything that wants to know when the agent changes parcels -			gAgent.changeParcels(); -  			if (instance->mTeleportInProgress)  			{  				instance->mTeleportInProgress = FALSE; @@ -1733,6 +1730,7 @@ void LLViewerParcelMgr::processParcelProperties(LLMessageSystem *msg, void **use  			}              parcel->setParcelEnvironmentVersion(parcel_environment_version);              LL_DEBUGS("ENVIRONMENT") << "Parcel environment version is " << parcel->getParcelEnvironmentVersion() << LL_ENDL; +              // Notify anything that wants to know when the agent changes parcels              gAgent.changeParcels();              instance->mTeleportInProgress = FALSE; | 
