diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 36b524a..1e16a5c 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -4929,9 +4929,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
4929 | public LSL_String llGetAgentLanguage(string id) | 4929 | public LSL_String llGetAgentLanguage(string id) |
4930 | { | 4930 | { |
4931 | // This should only return a value if the avatar is in the same region | 4931 | // This should only return a value if the avatar is in the same region |
4932 | //ckrinke 1-30-09 : This needs to parse the XMLRPC language field supplied | ||
4933 | //by the client at login. Currently returning only en-us until our I18N | ||
4934 | //effort gains momentum | ||
4932 | m_host.AddScriptLPS(1); | 4935 | m_host.AddScriptLPS(1); |
4933 | NotImplemented("llGetAgentLanguage"); | 4936 | return "en-us"; |
4934 | return ""; | ||
4935 | } | 4937 | } |
4936 | 4938 | ||
4937 | public void llAdjustSoundVolume(double volume) | 4939 | public void llAdjustSoundVolume(double volume) |