diff options
author | Melanie | 2013-05-05 22:01:07 +0200 |
---|---|---|
committer | Melanie | 2013-05-05 22:01:07 +0200 |
commit | a8faed6f76e5bb7936c1bc2b4711b5eeb143173d (patch) | |
tree | e4d3502d5e56b66a6841f7aa6cf3e58ecda96222 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |
parent | Add RegionManager level and the ability to use literal XML to the dynamic flo... (diff) | |
download | opensim-SC-a8faed6f76e5bb7936c1bc2b4711b5eeb143173d.zip opensim-SC-a8faed6f76e5bb7936c1bc2b4711b5eeb143173d.tar.gz opensim-SC-a8faed6f76e5bb7936c1bc2b4711b5eeb143173d.tar.bz2 opensim-SC-a8faed6f76e5bb7936c1bc2b4711b5eeb143173d.tar.xz |
Implement llSetContentType using the new OpenID auth support for authentication
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index b6bb5d8..6f3677c 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -2014,5 +2014,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
2014 | { | 2014 | { |
2015 | return m_LSL_Functions.llGetPhysicsMaterial(); | 2015 | return m_LSL_Functions.llGetPhysicsMaterial(); |
2016 | } | 2016 | } |
2017 | |||
2018 | public void llSetContentType(LSL_Key id, LSL_Integer content_type) | ||
2019 | { | ||
2020 | m_LSL_Functions.llSetContentType(id, content_type); | ||
2021 | } | ||
2017 | } | 2022 | } |
2018 | } | 2023 | } |