aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land/LandObject.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandObject.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandObject.cs b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
index 9affe7d..ccb85f6 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandObject.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandObject.cs
@@ -1849,7 +1849,7 @@ namespace OpenSim.Region.CoreModules.World.Land
1849 float newdwell = (float)(cur * 1.666666666667e-5); 1849 float newdwell = (float)(cur * 1.666666666667e-5);
1850 LandData.Dwell = newdwell; 1850 LandData.Dwell = newdwell;
1851 1851
1852 if(Math.Abs(newdwell - dwell) > 1.0) 1852 if(Math.Abs(newdwell - dwell) >= 0.9)
1853 m_scene.EventManager.TriggerLandObjectAdded(this); 1853 m_scene.EventManager.TriggerLandObjectAdded(this);
1854 } 1854 }
1855 } 1855 }