aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSim.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-02-11 22:09:46 +0000
committerJustin Clark-Casey (justincc)2011-02-11 22:10:02 +0000
commit8fd58aa00c092da188a67573d4aa87c363f44eff (patch)
tree0dc1a95089592022e0b099427d7c3f207ec8ac8c /OpenSim/Region/Application/OpenSim.cs
parentReinstated a couple of null checks related to the previous revert. (diff)
downloadopensim-SC_OLD-8fd58aa00c092da188a67573d4aa87c363f44eff.zip
opensim-SC_OLD-8fd58aa00c092da188a67573d4aa87c363f44eff.tar.gz
opensim-SC_OLD-8fd58aa00c092da188a67573d4aa87c363f44eff.tar.bz2
opensim-SC_OLD-8fd58aa00c092da188a67573d4aa87c363f44eff.tar.xz
add estate name to show regions console command
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSim.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index bd1aa46..4081888 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -1030,11 +1030,12 @@ namespace OpenSim
1030 delegate(Scene scene) 1030 delegate(Scene scene)
1031 { 1031 {
1032 MainConsole.Instance.Output(String.Format( 1032 MainConsole.Instance.Output(String.Format(
1033 "Region Name: {0}, Region XLoc: {1}, Region YLoc: {2}, Region Port: {3}", 1033 "Region Name: {0}, Region XLoc: {1}, Region YLoc: {2}, Region Port: {3}, Estate Name: {4}",
1034 scene.RegionInfo.RegionName, 1034 scene.RegionInfo.RegionName,
1035 scene.RegionInfo.RegionLocX, 1035 scene.RegionInfo.RegionLocX,
1036 scene.RegionInfo.RegionLocY, 1036 scene.RegionInfo.RegionLocY,
1037 scene.RegionInfo.InternalEndPoint.Port)); 1037 scene.RegionInfo.InternalEndPoint.Port,
1038 scene.RegionInfo.EstateSettings.EstateName));
1038 }); 1039 });
1039 break; 1040 break;
1040 1041