aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs
diff options
context:
space:
mode:
authorMelanie2009-08-08 01:43:28 +0100
committerMelanie2009-08-08 01:43:28 +0100
commit0b0ed200f66bb8ab3c139d85263e7c8e81117791 (patch)
tree49af5e09fa54c4ef1d441ebd58ab9c6bf4a242fd /OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs
parentChange the default for internal IP address back to 0.0.0.0 (diff)
parentMerge branch 'master' of ssh://MyConnection/var/git/opensim (diff)
downloadopensim-SC_OLD-0b0ed200f66bb8ab3c139d85263e7c8e81117791.zip
opensim-SC_OLD-0b0ed200f66bb8ab3c139d85263e7c8e81117791.tar.gz
opensim-SC_OLD-0b0ed200f66bb8ab3c139d85263e7c8e81117791.tar.bz2
opensim-SC_OLD-0b0ed200f66bb8ab3c139d85263e7c8e81117791.tar.xz
Merge branch 'master' of ssh://melanie@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs')
-rw-r--r--OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs b/OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs
index 3e9c326..d4bba10 100644
--- a/OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs
+++ b/OpenSim/Region/OptionalModules/World/TreePopulator/TreePopulatorModule.cs
@@ -755,8 +755,8 @@ namespace OpenSim.Region.OptionalModules.World.TreePopulator
755 position.X = s_tree.AbsolutePosition.X + (float)randX; 755 position.X = s_tree.AbsolutePosition.X + (float)randX;
756 position.Y = s_tree.AbsolutePosition.Y + (float)randY; 756 position.Y = s_tree.AbsolutePosition.Y + (float)randY;
757 757
758 if (position.X <= 255 && position.X >= 0 && 758 if (position.X <= ((int)Constants.RegionSize - 1) && position.X >= 0 &&
759 position.Y <= 255 && position.Y >= 0 && 759 position.Y <= ((int)Constants.RegionSize - 1) && position.Y >= 0 &&
760 Util.GetDistanceTo(position, copse.m_seed_point) <= copse.m_range) 760 Util.GetDistanceTo(position, copse.m_seed_point) <= copse.m_range)
761 { 761 {
762 UUID uuid = m_scene.RegionInfo.EstateSettings.EstateOwner; 762 UUID uuid = m_scene.RegionInfo.EstateSettings.EstateOwner;