diff options
author | MW | 2007-06-25 16:01:30 +0000 |
---|---|---|
committer | MW | 2007-06-25 16:01:30 +0000 |
commit | f41379549773531b2886b64aaacf57c954a64610 (patch) | |
tree | 09d96fbb41898db1ed55a674c1757fbaee34c7af /OpenSim/OpenSim.LocalCommunications | |
parent | Disabled the EventQueueGet CAPS as its not yet fully functional. (diff) | |
download | opensim-SC-f41379549773531b2886b64aaacf57c954a64610.zip opensim-SC-f41379549773531b2886b64aaacf57c954a64610.tar.gz opensim-SC-f41379549773531b2886b64aaacf57c954a64610.tar.bz2 opensim-SC-f41379549773531b2886b64aaacf57c954a64610.tar.xz |
updated prebuild.xml.
Added some more events to IClientAPI (OnGrapObject , OnGrapUpdate, OnDeGrapObject).
Diffstat (limited to 'OpenSim/OpenSim.LocalCommunications')
-rw-r--r-- | OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs | 7 |
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; |