diff options
author | SignpostMarv | 2012-10-18 10:15:34 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-19 02:48:59 +0100 |
commit | ec044537d50b425178c4e081abcf325d28028480 (patch) | |
tree | 8a2089c40e3252c0fa0dd3c0521358405aca910a | |
parent | minor: comment out currently unused logger in DynamicTextureModule (diff) | |
download | opensim-SC_OLD-ec044537d50b425178c4e081abcf325d28028480.zip opensim-SC_OLD-ec044537d50b425178c4e081abcf325d28028480.tar.gz opensim-SC_OLD-ec044537d50b425178c4e081abcf325d28028480.tar.bz2 opensim-SC_OLD-ec044537d50b425178c4e081abcf325d28028480.tar.xz |
ensuring that operand order in llGetLinkName is internally consistent
Diffstat (limited to '')
-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 ac74bf8..42ab39a 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3828,7 +3828,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3828 | } | 3828 | } |
3829 | 3829 | ||
3830 | // simplest case, this prims link number | 3830 | // simplest case, this prims link number |
3831 | if (m_host.LinkNum == linknum) | 3831 | if (linknum == m_host.LinkNum) |
3832 | return m_host.Name; | 3832 | return m_host.Name; |
3833 | 3833 | ||
3834 | // Single prim | 3834 | // Single prim |