aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Grid/GridServer/GridManager.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs
index 5454f03..08d5393 100644
--- a/OpenSim/Grid/GridServer/GridManager.cs
+++ b/OpenSim/Grid/GridServer/GridManager.cs
@@ -409,8 +409,10 @@ namespace OpenSim.Grid.GridServer
409 { 409 {
410 return ErrorResponse( 410 return ErrorResponse(
411 String.Format( 411 String.Format(
412 "Your region is the wrong version to connect to this grid. Try changing to version {0} (interface version {1})", 412 "Your region service implements OGS1 interface version {0}"
413 m_opensimVersion, VersionInfo.MajorInterfaceVersion)); 413 + " but this grid requires that the region implement OGS1 interface version {1} to connect."
414 + " Try changing to OpenSimulator {2}",
415 majorInterfaceVersion, VersionInfo.MajorInterfaceVersion, m_opensimVersion));
414 } 416 }
415 417
416 existingSim = GetRegion(sim.regionHandle); 418 existingSim = GetRegion(sim.regionHandle);