diff options
author | Diva Canto | 2010-01-15 15:11:58 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-15 15:11:58 -0800 |
commit | f1c30784ac767bf5f62e81748984b76d85d71f6a (patch) | |
tree | 5aa635eadb534f30cd8aa2b9a1803f637e9b95a6 /OpenSim/Region/Application/OpenSim.cs | |
parent | Added a UserAccountCache to the UserAccountServiceConnectors. Uses a CenomeCa... (diff) | |
download | opensim-SC_OLD-f1c30784ac767bf5f62e81748984b76d85d71f6a.zip opensim-SC_OLD-f1c30784ac767bf5f62e81748984b76d85d71f6a.tar.gz opensim-SC_OLD-f1c30784ac767bf5f62e81748984b76d85d71f6a.tar.bz2 opensim-SC_OLD-f1c30784ac767bf5f62e81748984b76d85d71f6a.tar.xz |
* General cleanup of Teleports, Crossings and Child agents. They are now in the new AgentTransferModule, in line with what MW started implementing back in May -- ITeleportModule. This has been renamed IAgentTransferModule, to be more generic.
* HGSceneCommunicationService has been deleted
* SceneCommunicationService will likely be deleted soon too
Diffstat (limited to 'OpenSim/Region/Application/OpenSim.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 9f5e173..546a1d1 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -414,7 +414,7 @@ namespace OpenSim | |||
414 | 414 | ||
415 | foreach (ScenePresence presence in agents) | 415 | foreach (ScenePresence presence in agents) |
416 | { | 416 | { |
417 | RegionInfo regionInfo = m_sceneManager.GetRegionInfo(presence.RegionHandle); | 417 | RegionInfo regionInfo = presence.Scene.RegionInfo; |
418 | 418 | ||
419 | if (presence.Firstname.ToLower().Contains(cmdparams[2].ToLower()) && | 419 | if (presence.Firstname.ToLower().Contains(cmdparams[2].ToLower()) && |
420 | presence.Lastname.ToLower().Contains(cmdparams[3].ToLower())) | 420 | presence.Lastname.ToLower().Contains(cmdparams[3].ToLower())) |
@@ -908,7 +908,7 @@ namespace OpenSim | |||
908 | 908 | ||
909 | foreach (ScenePresence presence in agents) | 909 | foreach (ScenePresence presence in agents) |
910 | { | 910 | { |
911 | RegionInfo regionInfo = m_sceneManager.GetRegionInfo(presence.RegionHandle); | 911 | RegionInfo regionInfo = presence.Scene.RegionInfo; |
912 | string regionName; | 912 | string regionName; |
913 | 913 | ||
914 | if (regionInfo == null) | 914 | if (regionInfo == null) |