diff options
author | Adam Frisby | 2007-04-22 04:49:12 +0000 |
---|---|---|
committer | Adam Frisby | 2007-04-22 04:49:12 +0000 |
commit | c1f34105faf023ace51852a4f1b7b23db18fe2d8 (patch) | |
tree | 460ab8ea3b94caa4d21ed564d9a55950692bee42 /OpenSim.RegionServer/SimClient.cs | |
parent | Removed last references to ancient LandMap[] array. (diff) | |
download | opensim-SC_OLD-c1f34105faf023ace51852a4f1b7b23db18fe2d8.zip opensim-SC_OLD-c1f34105faf023ace51852a4f1b7b23db18fe2d8.tar.gz opensim-SC_OLD-c1f34105faf023ace51852a4f1b7b23db18fe2d8.tar.bz2 opensim-SC_OLD-c1f34105faf023ace51852a4f1b7b23db18fe2d8.tar.xz |
Bumped avatar entry height to 15m above ground rather than the old 1m above ground. Should prevent 'below ground' arrivals.
Diffstat (limited to 'OpenSim.RegionServer/SimClient.cs')
-rw-r--r-- | OpenSim.RegionServer/SimClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim.RegionServer/SimClient.cs b/OpenSim.RegionServer/SimClient.cs index cc85b67..e4c445b 100644 --- a/OpenSim.RegionServer/SimClient.cs +++ b/OpenSim.RegionServer/SimClient.cs | |||
@@ -119,7 +119,7 @@ namespace OpenSim | |||
119 | } | 119 | } |
120 | else | 120 | else |
121 | { | 121 | { |
122 | this.startpos = new LLVector3(128, 128, m_world.Terrain[(int)128, (int)128] + 1.0f); // new LLVector3(128.0f, 128.0f, 60f); | 122 | this.startpos = new LLVector3(128, 128, m_world.Terrain[(int)128, (int)128] + 15.0f); // new LLVector3(128.0f, 128.0f, 60f); |
123 | } | 123 | } |
124 | PacketQueue = new BlockingQueue<QueItem>(); | 124 | PacketQueue = new BlockingQueue<QueItem>(); |
125 | 125 | ||