diff options
author | Justin Clark-Casey (justincc) | 2011-02-11 22:09:46 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-02-11 22:10:02 +0000 |
commit | 8fd58aa00c092da188a67573d4aa87c363f44eff (patch) | |
tree | 0dc1a95089592022e0b099427d7c3f207ec8ac8c /OpenSim/Region | |
parent | Reinstated a couple of null checks related to the previous revert. (diff) | |
download | opensim-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 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 5 |
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 | ||