diff options
author | Justin Clark-Casey (justincc) | 2011-01-28 22:59:07 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-01-28 22:59:07 +0000 |
commit | 933f47e89df69200fd4cf03a9f48c465a0434e05 (patch) | |
tree | 39ace8db13c688ab2ca724b86d153e99a81ab138 /OpenSim/Region | |
parent | minor: don't bother reparsing the sources for includes if ReadConfig() was un... (diff) | |
download | opensim-SC_OLD-933f47e89df69200fd4cf03a9f48c465a0434e05.zip opensim-SC_OLD-933f47e89df69200fd4cf03a9f48c465a0434e05.tar.gz opensim-SC_OLD-933f47e89df69200fd4cf03a9f48c465a0434e05.tar.bz2 opensim-SC_OLD-933f47e89df69200fd4cf03a9f48c465a0434e05.tar.xz |
Comment out unused call to GridService in TeleportAgent()
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index bca08fb..c0c790d 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -702,7 +702,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
702 | // and convert the regionName to the target region | 702 | // and convert the regionName to the target region |
703 | if (regionName.Contains(".") && regionName.Contains(":")) | 703 | if (regionName.Contains(".") && regionName.Contains(":")) |
704 | { | 704 | { |
705 | List<GridRegion> regions = World.GridService.GetRegionsByName(World.RegionInfo.ScopeID, regionName, 1); | 705 | // List<GridRegion> regions = World.GridService.GetRegionsByName(World.RegionInfo.ScopeID, regionName, 1); |
706 | string[] parts = regionName.Split(new char[] { ':' }); | 706 | string[] parts = regionName.Split(new char[] { ':' }); |
707 | if (parts.Length > 2) | 707 | if (parts.Length > 2) |
708 | regionName = parts[0] + ':' + parts[1] + "/ " + parts[2]; | 708 | regionName = parts[0] + ':' + parts[1] + "/ " + parts[2]; |