From c9a5215d6d1376260df22571482dc77bfe7aeb2d Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Fri, 28 Nov 2008 20:37:21 +0000 Subject: * Fixes Location == Location, and Location != Location --- OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs') 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 public bool HandlesRegion(Location x) { - return x.RegionHandle == m_location.RegionHandle; - //return x == m_location; + //return x.RegionHandle == m_location.RegionHandle; + return x == m_location; } public void AddScene(Scene x) -- cgit v1.1