MW is a debugging wiz (regionx/y updated)
parent
488f7763ba
commit
e50f50ebb1
|
@ -302,18 +302,12 @@ namespace OpenSim.UserServer
|
||||||
responseData["home"] = this.home;
|
responseData["home"] = this.home;
|
||||||
responseData["look_at"] = this.lookAt;
|
responseData["look_at"] = this.lookAt;
|
||||||
responseData["message"] = this.welcomeMessage;
|
responseData["message"] = this.welcomeMessage;
|
||||||
responseData["region_x"] = this.regionX;
|
responseData["region_x"] = (Int32)this.RegionX * 256;
|
||||||
responseData["region_y"] = this.regionY;
|
responseData["region_y"] = (Int32)this.RegionY * 256;
|
||||||
|
|
||||||
responseData["login"] = "true";
|
responseData["login"] = "true";
|
||||||
this.xmlRpcResponse.Value = responseData;
|
this.xmlRpcResponse.Value = responseData;
|
||||||
|
|
||||||
// differential debuggery
|
|
||||||
// FileStream fs = new FileStream("loginresponse.xml", FileMode.OpenOrCreate);
|
|
||||||
// StreamWriter SW = new StreamWriter(fs);
|
|
||||||
// SW.Write(this.xmlRpcResponse.ToString());
|
|
||||||
// SW.Close();
|
|
||||||
|
|
||||||
return (this.xmlRpcResponse);
|
return (this.xmlRpcResponse);
|
||||||
|
|
||||||
} // ToXmlRpcResponse
|
} // ToXmlRpcResponse
|
||||||
|
|
Loading…
Reference in New Issue