diff options
author | UbitUmarov | 2018-11-14 13:12:25 +0000 |
---|---|---|
committer | UbitUmarov | 2018-11-14 13:12:25 +0000 |
commit | a1a8b5f4a715f97348da75a2644ff8215e18782f (patch) | |
tree | 2df59fb58975929dce440ebfd43828c81c207515 /OpenSim/Region | |
parent | some cleaup (diff) | |
download | opensim-SC-a1a8b5f4a715f97348da75a2644ff8215e18782f.zip opensim-SC-a1a8b5f4a715f97348da75a2644ff8215e18782f.tar.gz opensim-SC-a1a8b5f4a715f97348da75a2644ff8215e18782f.tar.bz2 opensim-SC-a1a8b5f4a715f97348da75a2644ff8215e18782f.tar.xz |
replace RemoteParcelRequest response encoding ( runprebuild needed)
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs index 854c833..ebfc58c 100644 --- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | |||
@@ -2031,11 +2031,12 @@ namespace OpenSim.Region.CoreModules.World.Land | |||
2031 | m_log.ErrorFormat("[LAND MANAGEMENT MODULE]: Wrong type in request {0}", request); | 2031 | m_log.ErrorFormat("[LAND MANAGEMENT MODULE]: Wrong type in request {0}", request); |
2032 | } | 2032 | } |
2033 | 2033 | ||
2034 | LLSDRemoteParcelResponse response = new LLSDRemoteParcelResponse(); | ||
2035 | response.parcel_id = parcelID; | ||
2036 | //m_log.DebugFormat("[LAND MANAGEMENT MODULE]: Got parcelID {0}", parcelID); | 2034 | //m_log.DebugFormat("[LAND MANAGEMENT MODULE]: Got parcelID {0}", parcelID); |
2037 | 2035 | StringBuilder sb = LLSDxmlEncode.Start(); | |
2038 | return LLSDHelpers.SerialiseLLSDReply(response); | 2036 | LLSDxmlEncode.AddMap(sb); |
2037 | LLSDxmlEncode.AddElem("parcel_id", parcelID,sb); | ||
2038 | LLSDxmlEncode.AddEndMap(sb); | ||
2039 | return LLSDxmlEncode.End(sb); | ||
2039 | } | 2040 | } |
2040 | 2041 | ||
2041 | #endregion | 2042 | #endregion |