diff options
author | mingchen | 2008-03-22 23:10:22 +0000 |
---|---|---|
committer | mingchen | 2008-03-22 23:10:22 +0000 |
commit | 71ca162821ac0e5aae5f91c433b91549ae6d5419 (patch) | |
tree | fa2f13c2541075aba6807fcf95364466a785bd51 /OpenSim/Region/ScriptEngine/Common | |
parent | Implements llLoopSound(), llStopSound(), and llAdjustSoundVolume(). (diff) | |
download | opensim-SC_OLD-71ca162821ac0e5aae5f91c433b91549ae6d5419.zip opensim-SC_OLD-71ca162821ac0e5aae5f91c433b91549ae6d5419.tar.gz opensim-SC_OLD-71ca162821ac0e5aae5f91c433b91549ae6d5419.tar.bz2 opensim-SC_OLD-71ca162821ac0e5aae5f91c433b91549ae6d5419.tar.xz |
*Moved LandManagement into its own region module (spiffy!)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index efcec75..62dcf8c 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -4311,7 +4311,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
4311 | public int llGetParcelFlags(LSL_Types.Vector3 pos) | 4311 | public int llGetParcelFlags(LSL_Types.Vector3 pos) |
4312 | { | 4312 | { |
4313 | m_host.AddScriptLPS(1); | 4313 | m_host.AddScriptLPS(1); |
4314 | return (int)World.LandManager.getLandObject((float)pos.x, (float)pos.y).landData.landFlags; | 4314 | return (int)World.LandChannel.getLandObject((float)pos.x, (float)pos.y).landData.landFlags; |
4315 | } | 4315 | } |
4316 | 4316 | ||
4317 | public int llGetRegionFlags() | 4317 | public int llGetRegionFlags() |