diff options
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs index 980d3cc..8aadec6 100644 --- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs +++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | |||
@@ -2125,7 +2125,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer | |||
2125 | psh |= (ulong)pY & 0xffffff00ul; | 2125 | psh |= (ulong)pY & 0xffffff00ul; |
2126 | 2126 | ||
2127 | lock (m_notFoundLocations) | 2127 | lock (m_notFoundLocations) |
2128 | m_notFoundLocations[psh] = DateTime.Now + TimeSpan.FromSeconds(30);; | 2128 | m_notFoundLocations[psh] = DateTime.UtcNow + TimeSpan.FromSeconds(30); |
2129 | } | 2129 | } |
2130 | // Test to see of this point is in any of the 'not found' areas. | 2130 | // Test to see of this point is in any of the 'not found' areas. |
2131 | // Return 'true' if the point is found inside the 'not found' areas. | 2131 | // Return 'true' if the point is found inside the 'not found' areas. |
@@ -2146,7 +2146,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer | |||
2146 | return false; | 2146 | return false; |
2147 | } | 2147 | } |
2148 | } | 2148 | } |
2149 | 2149 | ||
2150 | private void DoExpiration() | 2150 | private void DoExpiration() |
2151 | { | 2151 | { |
2152 | List<ulong> m_toRemove = new List<ulong>();; | 2152 | List<ulong> m_toRemove = new List<ulong>();; |