aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorMW2009-03-02 14:42:01 +0000
committerMW2009-03-02 14:42:01 +0000
commitff761026443973d87c8e92e752dad838e0bc72f2 (patch)
tree10c82dd44093b4a599f314b65998373cf0a4a55a /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parentRemoved the commented out InitialiseStandaloneServices and InitialiseGridServ... (diff)
downloadopensim-SC_OLD-ff761026443973d87c8e92e752dad838e0bc72f2.zip
opensim-SC_OLD-ff761026443973d87c8e92e752dad838e0bc72f2.tar.gz
opensim-SC_OLD-ff761026443973d87c8e92e752dad838e0bc72f2.tar.bz2
opensim-SC_OLD-ff761026443973d87c8e92e752dad838e0bc72f2.tar.xz
Changed IClientNetworkServer.AddScene method from void AddScene(Scene x) to void AddScene(IScene x). As there should be no need for the client view to have a reference to Scene. IScene should be all it needs.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 7aea9a3..e29ec4e 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -109,7 +109,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
109 return x == m_location; 109 return x == m_location;
110 } 110 }
111 111
112 public void AddScene(Scene x) 112 public void AddScene(IScene x)
113 { 113 {
114 LocalScene = x; 114 LocalScene = x;
115 } 115 }