aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim.Servers/LoginResponse.cs12
1 files changed, 3 insertions, 9 deletions
diff --git a/OpenSim.Servers/LoginResponse.cs b/OpenSim.Servers/LoginResponse.cs
index 9c5db6a..c51b8b1 100644
--- a/OpenSim.Servers/LoginResponse.cs
+++ b/OpenSim.Servers/LoginResponse.cs
@@ -302,17 +302,11 @@ namespace OpenSim.UserServer
302 responseData["home"] = this.home; 302 responseData["home"] = this.home;
303 responseData["look_at"] = this.lookAt; 303 responseData["look_at"] = this.lookAt;
304 responseData["message"] = this.welcomeMessage; 304 responseData["message"] = this.welcomeMessage;
305 responseData["region_x"] = this.regionX; 305 responseData["region_x"] = (Int32)this.RegionX * 256;
306 responseData["region_y"] = this.regionY; 306 responseData["region_y"] = (Int32)this.RegionY * 256;
307 307
308 responseData["login"] = "true"; 308 responseData["login"] = "true";
309 this.xmlRpcResponse.Value = responseData; 309 this.xmlRpcResponse.Value = responseData;
310
311 // differential debuggery
312 // FileStream fs = new FileStream("loginresponse.xml", FileMode.OpenOrCreate);
313 // StreamWriter SW = new StreamWriter(fs);
314 // SW.Write(this.xmlRpcResponse.ToString());
315 // SW.Close();
316 310
317 return (this.xmlRpcResponse); 311 return (this.xmlRpcResponse);
318 312