diff options
author | Diva Canto | 2010-01-24 15:04:41 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-24 15:04:41 -0800 |
commit | ea3d287f70d48eb2d3abf6eb1506bf64674874c5 (patch) | |
tree | 6b18f49a8bc9994ea615ac0dd890adb55cd68ec1 /OpenSim/Services | |
parent | Integrated the hyperlinking with the GridService. (diff) | |
download | opensim-SC_OLD-ea3d287f70d48eb2d3abf6eb1506bf64674874c5.zip opensim-SC_OLD-ea3d287f70d48eb2d3abf6eb1506bf64674874c5.tar.gz opensim-SC_OLD-ea3d287f70d48eb2d3abf6eb1506bf64674874c5.tar.bz2 opensim-SC_OLD-ea3d287f70d48eb2d3abf6eb1506bf64674874c5.tar.xz |
Some method implementations were missing from LocalGridServiceConnector.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/GridService/GridService.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Services/GridService/GridService.cs b/OpenSim/Services/GridService/GridService.cs index ae29a74..b86fd4d 100644 --- a/OpenSim/Services/GridService/GridService.cs +++ b/OpenSim/Services/GridService/GridService.cs | |||
@@ -410,7 +410,9 @@ namespace OpenSim.Services.GridService | |||
410 | { | 410 | { |
411 | RegionData region = m_Database.Get(regionID, scopeID); | 411 | RegionData region = m_Database.Get(regionID, scopeID); |
412 | 412 | ||
413 | return Convert.ToInt32(region.Data["flags"]); | 413 | int flags = Convert.ToInt32(region.Data["flags"]); |
414 | //m_log.DebugFormat("[GRID SERVICE]: Request for flags of {0}: {1}", regionID, flags); | ||
415 | return flags; | ||
414 | } | 416 | } |
415 | 417 | ||
416 | private void HandleShowRegion(string module, string[] cmd) | 418 | private void HandleShowRegion(string module, string[] cmd) |