diff options
author | Adam Frisby | 2007-06-21 15:31:37 +0000 |
---|---|---|
committer | Adam Frisby | 2007-06-21 15:31:37 +0000 |
commit | 5688c679140330026b579bbce5f477a735f37c2d (patch) | |
tree | 619b533cac091378e8986509c8574726f0d705ba /OpenSim | |
parent | Very Preliminary teleporting between regions added. (diff) | |
download | opensim-SC_OLD-5688c679140330026b579bbce5f477a735f37c2d.zip opensim-SC_OLD-5688c679140330026b579bbce5f477a735f37c2d.tar.gz opensim-SC_OLD-5688c679140330026b579bbce5f477a735f37c2d.tar.bz2 opensim-SC_OLD-5688c679140330026b579bbce5f477a735f37c2d.tar.xz |
* Attempted fix for Mono bug.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/OpenSim.RegionServer/ClientView.API.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/OpenSim.RegionServer/ClientView.API.cs b/OpenSim/OpenSim.RegionServer/ClientView.API.cs index 1895fb9..2365716 100644 --- a/OpenSim/OpenSim.RegionServer/ClientView.API.cs +++ b/OpenSim/OpenSim.RegionServer/ClientView.API.cs | |||
@@ -176,13 +176,13 @@ namespace OpenSim | |||
176 | mov.Data.RegionHandle = regInfo.RegionHandle; | 176 | mov.Data.RegionHandle = regInfo.RegionHandle; |
177 | // TODO - dynamicalise this stuff | 177 | // TODO - dynamicalise this stuff |
178 | mov.Data.Timestamp = 1172750370; | 178 | mov.Data.Timestamp = 1172750370; |
179 | if (pos != null) | 179 | if (pos == null) |
180 | { | 180 | { |
181 | mov.Data.Position = pos; | 181 | mov.Data.Position = this.startpos; |
182 | } | 182 | } |
183 | else | 183 | else |
184 | { | 184 | { |
185 | mov.Data.Position = this.startpos; | 185 | mov.Data.Position = pos; |
186 | } | 186 | } |
187 | mov.Data.LookAt = look; | 187 | mov.Data.LookAt = look; |
188 | 188 | ||