minor: switch around mixed up circuit code and endpoint data in "show connections" region console command

This commit is contained in:
Justin Clark-Casey (justincc)
2012-07-19 23:35:56 +01:00
parent d1d331a4c0
commit be39f03caa

View File

@@ -1145,8 +1145,8 @@ namespace OpenSim
c => cdt.AddRow(
s.Name,
c.Name,
c.RemoteEndPoint.ToString(),
c.CircuitCode.ToString(),
c.RemoteEndPoint.ToString(),
c.IsActive.ToString())));
MainConsole.Instance.Output(cdt.ToString());