diff options
author | Melanie Thielker | 2008-11-11 01:47:40 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-11 01:47:40 +0000 |
commit | 302d65569f721e19ee4400e3a73aa0530dd8e7e7 (patch) | |
tree | 6d367cfb122802f8230c75dd71de5100882aceb5 /OpenSim/Region/ScriptEngine | |
parent | Fix llList2Integer to have the same semantics as an (integer) cast. Handle (diff) | |
download | opensim-SC_OLD-302d65569f721e19ee4400e3a73aa0530dd8e7e7.zip opensim-SC_OLD-302d65569f721e19ee4400e3a73aa0530dd8e7e7.tar.gz opensim-SC_OLD-302d65569f721e19ee4400e3a73aa0530dd8e7e7.tar.bz2 opensim-SC_OLD-302d65569f721e19ee4400e3a73aa0530dd8e7e7.tar.xz |
Allow gods to terraform without limits. Respect the Allow Others To
Terraform flag in land.
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index d141ffe..09d3d79 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3470,7 +3470,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3470 | ITerrainModule tm = m_ScriptEngine.World.RequestModuleInterface<ITerrainModule>(); | 3470 | ITerrainModule tm = m_ScriptEngine.World.RequestModuleInterface<ITerrainModule>(); |
3471 | if (tm != null) | 3471 | if (tm != null) |
3472 | { | 3472 | { |
3473 | tm.ModifyTerrain(m_host.AbsolutePosition, (byte) brush, (byte) action, m_host.OwnerID); | 3473 | tm.ModifyTerrain(m_host.OwnerID, m_host.AbsolutePosition, (byte) brush, (byte) action, m_host.OwnerID); |
3474 | } | 3474 | } |
3475 | } | 3475 | } |
3476 | 3476 | ||