From f41379549773531b2886b64aaacf57c954a64610 Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 25 Jun 2007 16:01:30 +0000 Subject: updated prebuild.xml. Added some more events to IClientAPI (OnGrapObject , OnGrapUpdate, OnDeGrapObject). --- OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'OpenSim/OpenSim.LocalCommunications') 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 { public LocalBackEndServices SandBoxServices = new LocalBackEndServices(); public LocalUserServices UserServices; - - public CommunicationsLocal(uint defaultHomeX , uint defaultHomeY) + + public CommunicationsLocal(NetworkServersInfo serversInfo) + : base(serversInfo) { - UserServices = new LocalUserServices(this , defaultHomeX, defaultHomeY); + UserServices = new LocalUserServices(this , serversInfo.DefaultHomeLocX, serversInfo.DefaultHomeLocY); UserServices.AddPlugin("OpenGrid.Framework.Data.DB4o.dll"); UserServer = UserServices; GridServer = SandBoxServices; -- cgit v1.1