From ec5186c98ab4856056bbfd552eb2ccacd04d48bd Mon Sep 17 00:00:00 2001
From: Sean Dague
Date: Mon, 19 Nov 2007 23:00:08 +0000
Subject: there is no real reason to write this value back to estate settings,
 and it is the most often tickled part of this race condition.

---
 OpenSim/Framework/EstateSettings.cs | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'OpenSim')

diff --git a/OpenSim/Framework/EstateSettings.cs b/OpenSim/Framework/EstateSettings.cs
index 63b62c6..4a17b0b 100644
--- a/OpenSim/Framework/EstateSettings.cs
+++ b/OpenSim/Framework/EstateSettings.cs
@@ -479,7 +479,11 @@ namespace OpenSim.Framework
             set
             {
                 m_terrainImageID = value;
-                configMember.forceSetConfigurationOption("terrain_image_id", m_terrainImageID.ToString());
+                // I don't think there is a reason that this actually
+                // needs to be written back to the estate settings
+                // file.
+                
+                // configMember.forceSetConfigurationOption("terrain_image_id", m_terrainImageID.ToString());
             }
         }
 
-- 
cgit v1.1