diff options
author | Mandarinka Tasty | 2018-08-27 21:36:45 +0200 |
---|---|---|
committer | UbitUmarov | 2018-08-30 14:25:19 +0100 |
commit | 99a23421a87b7a988bfe4e986ee09d3938cdb149 (patch) | |
tree | d0a3a359af1f33a1d08e0cfd77735221d3bd18aa /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |
parent | add the Smoke texture to Opensim Library (diff) | |
download | opensim-SC-99a23421a87b7a988bfe4e986ee09d3938cdb149.zip opensim-SC-99a23421a87b7a988bfe4e986ee09d3938cdb149.tar.gz opensim-SC-99a23421a87b7a988bfe4e986ee09d3938cdb149.tar.bz2 opensim-SC-99a23421a87b7a988bfe4e986ee09d3938cdb149.tar.xz |
Adding check permission CanIssueEstateCommand for osRegionNotice and new function osRegionNotice(string agentID, string msg)
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs index 5cf2cdb..5f7841e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs | |||
@@ -225,6 +225,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
225 | m_OSSL_Functions.osRegionNotice(msg); | 225 | m_OSSL_Functions.osRegionNotice(msg); |
226 | } | 226 | } |
227 | 227 | ||
228 | public void osRegionNotice(string agentID, string msg) | ||
229 | { | ||
230 | m_OSSL_Functions.osRegionNotice(agentID, msg); | ||
231 | } | ||
232 | |||
228 | public bool osConsoleCommand(string Command) | 233 | public bool osConsoleCommand(string Command) |
229 | { | 234 | { |
230 | return m_OSSL_Functions.osConsoleCommand(Command); | 235 | return m_OSSL_Functions.osConsoleCommand(Command); |