From 33330297d603a66cc157baa21c81328edc893e51 Mon Sep 17 00:00:00 2001 From: diva Date: Fri, 20 Feb 2009 03:39:50 +0000 Subject: THE BIG ANTI-REMOTING SCHLEP -- StartRemoting is no more. Sims in older versions will have a hard time communicating with sims on this release and later, especially if they haven't transitioned to RESTComms at all. There's still some cleanup to do on assorted data structures, but the main functional change here is that sims no longer listen on remoting ports. --- OpenSim/Region/Framework/Scenes/Scene.cs | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs') diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 1f6d647..aa8b51a 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -2112,21 +2112,6 @@ namespace OpenSim.Region.Framework.Scenes appearance = new AvatarAppearance(); } - //try - //{ - // if (m_AvatarFactory != null) - // { - // if (m_AvatarFactory.TryGetAvatarAppearance(client.AgentId, out appearance)) - // return; - // } - //} - //catch (Exception e) - //{ - // m_log.ErrorFormat("[APPEARANCE]: Problem fetching appearance for avatar {0}, {1}", - // client.Name, e); - //} - - //m_log.Warn("[APPEARANCE]: Appearance not found, returning default"); } /// @@ -2692,19 +2677,6 @@ namespace OpenSim.Region.Framework.Scenes } } - /// - /// Agent is crossing the border into a neighbouring region. Tell the neighbour about it! - /// - /// - /// - /// - /// - /// - public bool InformNeighbourOfCrossing(ulong regionHandle, UUID agentID, Vector3 position, bool isFlying) - { - return m_sceneGridService.CrossToNeighbouringRegion(regionHandle, agentID, position, isFlying); - } - public void CrossAgentToNewRegion(ScenePresence agent, bool isFlying) { m_sceneGridService.CrossAgentToNewRegion(this, agent, isFlying); -- cgit v1.1