diff options
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.cs | 2 |
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 | } |