aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorTeravus Ovares2008-11-28 20:37:21 +0000
committerTeravus Ovares2008-11-28 20:37:21 +0000
commitc9a5215d6d1376260df22571482dc77bfe7aeb2d (patch)
treee2baa4a7963ab2a5d18092c29494bda5cf31083a /OpenSim/Region
parent* simplify AddNewClient since making this root without using MakeRootAgent() ... (diff)
downloadopensim-SC_OLD-c9a5215d6d1376260df22571482dc77bfe7aeb2d.zip
opensim-SC_OLD-c9a5215d6d1376260df22571482dc77bfe7aeb2d.tar.gz
opensim-SC_OLD-c9a5215d6d1376260df22571482dc77bfe7aeb2d.tar.bz2
opensim-SC_OLD-c9a5215d6d1376260df22571482dc77bfe7aeb2d.tar.xz
* Fixes Location == Location, and Location != Location
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 8653b23..09b9ac9 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -106,8 +106,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
106 106
107 public bool HandlesRegion(Location x) 107 public bool HandlesRegion(Location x)
108 { 108 {
109 return x.RegionHandle == m_location.RegionHandle; 109 //return x.RegionHandle == m_location.RegionHandle;
110 //return x == m_location; 110 return x == m_location;
111 } 111 }
112 112
113 public void AddScene(Scene x) 113 public void AddScene(Scene x)