aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
diff options
context:
space:
mode:
authorMW2007-06-25 16:01:30 +0000
committerMW2007-06-25 16:01:30 +0000
commitf41379549773531b2886b64aaacf57c954a64610 (patch)
tree09d96fbb41898db1ed55a674c1757fbaee34c7af /OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
parentDisabled the EventQueueGet CAPS as its not yet fully functional. (diff)
downloadopensim-SC_OLD-f41379549773531b2886b64aaacf57c954a64610.zip
opensim-SC_OLD-f41379549773531b2886b64aaacf57c954a64610.tar.gz
opensim-SC_OLD-f41379549773531b2886b64aaacf57c954a64610.tar.bz2
opensim-SC_OLD-f41379549773531b2886b64aaacf57c954a64610.tar.xz
updated prebuild.xml.
Added some more events to IClientAPI (OnGrapObject , OnGrapUpdate, OnDeGrapObject).
Diffstat (limited to '')
-rw-r--r--OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
index 008d47e..743b9b4 100644
--- a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
+++ b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
@@ -42,10 +42,11 @@ namespace OpenSim.LocalCommunications
42 { 42 {
43 public LocalBackEndServices SandBoxServices = new LocalBackEndServices(); 43 public LocalBackEndServices SandBoxServices = new LocalBackEndServices();
44 public LocalUserServices UserServices; 44 public LocalUserServices UserServices;
45 45
46 public CommunicationsLocal(uint defaultHomeX , uint defaultHomeY) 46 public CommunicationsLocal(NetworkServersInfo serversInfo)
47 : base(serversInfo)
47 { 48 {
48 UserServices = new LocalUserServices(this , defaultHomeX, defaultHomeY); 49 UserServices = new LocalUserServices(this , serversInfo.DefaultHomeLocX, serversInfo.DefaultHomeLocY);
49 UserServices.AddPlugin("OpenGrid.Framework.Data.DB4o.dll"); 50 UserServices.AddPlugin("OpenGrid.Framework.Data.DB4o.dll");
50 UserServer = UserServices; 51 UserServer = UserServices;
51 GridServer = SandBoxServices; 52 GridServer = SandBoxServices;