aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-04-14 17:13:38 +0000
committerTeravus Ovares2008-04-14 17:13:38 +0000
commite21886eea0a4d2782a74bb1f974b2e1056fea055 (patch)
tree33512912e98ad07ab04f3370fd48d1d0ed307a66 /OpenSim/Region/Environment/Scenes/Scene.cs
parent* Get Util.GetHostFromDNS to tell us the dns address it was trying to resolve... (diff)
downloadopensim-SC_OLD-e21886eea0a4d2782a74bb1f974b2e1056fea055.zip
opensim-SC_OLD-e21886eea0a4d2782a74bb1f974b2e1056fea055.tar.gz
opensim-SC_OLD-e21886eea0a4d2782a74bb1f974b2e1056fea055.tar.bz2
opensim-SC_OLD-e21886eea0a4d2782a74bb1f974b2e1056fea055.tar.xz
* Fixed a few warnings.
* Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index f15ec43..410120f 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1001,8 +1001,8 @@ namespace OpenSim.Region.Environment.Scenes
1001 LLVector3 RayEnd = new LLVector3(0, 0, 0); 1001 LLVector3 RayEnd = new LLVector3(0, 0, 0);
1002 LLVector3 RayStart = new LLVector3(0, 0, 0); 1002 LLVector3 RayStart = new LLVector3(0, 0, 0);
1003 LLVector3 direction = new LLVector3(0, 0, -1); 1003 LLVector3 direction = new LLVector3(0, 0, -1);
1004 Vector3 AXOrigin = new Vector3(); 1004 //Vector3 AXOrigin = new Vector3();
1005 Vector3 AXdirection = new Vector3(); 1005 //Vector3 AXdirection = new Vector3();
1006 Ray testRay = new Ray(); 1006 Ray testRay = new Ray();
1007 EntityIntersection rt = new EntityIntersection(); 1007 EntityIntersection rt = new EntityIntersection();
1008 1008
@@ -1573,6 +1573,7 @@ namespace OpenSim.Region.Environment.Scenes
1573 1573
1574 client.OnGrabObject += ProcessObjectGrab; 1574 client.OnGrabObject += ProcessObjectGrab;
1575 client.OnMoneyTransferRequest += ProcessMoneyTransferRequest; 1575 client.OnMoneyTransferRequest += ProcessMoneyTransferRequest;
1576 client.OnParcelBuy += ProcessParcelBuy;
1576 client.OnAvatarPickerRequest += ProcessAvatarPickerRequest; 1577 client.OnAvatarPickerRequest += ProcessAvatarPickerRequest;
1577 client.OnPacketStats += AddPacketStats; 1578 client.OnPacketStats += AddPacketStats;
1578 1579