From 339671afc67f9b6ce036733b7b746c572d78ddc3 Mon Sep 17 00:00:00 2001 From: Charles Krinke Date: Thu, 25 Sep 2008 14:57:40 +0000 Subject: Mantis#2017. Thank you kindly, Tyre, for a patch that solves: Check the client dialog box (from top menu) WORLD / REGION ESTATE / REGION tab. The client dialog box seems to have a hard limit of about 32 characters per line available for displaying the region version number. Our regions are sending a string which is greater than the limit, causing the client to wrap the text and look ugly. --- OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/ScriptEngine') diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs index 16b4c50..320e878 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api_Base.cs @@ -7028,7 +7028,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api else reply = "UNKNOWN"; break; - case 128: // SIM_RELEASE + case 128: // SIM_RELEASE (not LSL conform, valid for OpenSim only) reply = m_ScriptEngine.World.GetSimulatorVersion(); break; default: -- cgit v1.1