diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index e1630b3..d2e9f6c 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7725,7 +7725,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7725 | return null; | 7725 | return null; |
7726 | 7726 | ||
7727 | string ph = rules.Data[idx++].ToString(); | 7727 | string ph = rules.Data[idx++].ToString(); |
7728 | m_host.ParentGroup.ScriptSetPhantomStatus(ph.Equals("1")); | 7728 | part.ParentGroup.ScriptSetPhantomStatus(ph.Equals("1")); |
7729 | 7729 | ||
7730 | break; | 7730 | break; |
7731 | 7731 | ||
@@ -7764,7 +7764,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7764 | return null; | 7764 | return null; |
7765 | string temp = rules.Data[idx++].ToString(); | 7765 | string temp = rules.Data[idx++].ToString(); |
7766 | 7766 | ||
7767 | m_host.ParentGroup.ScriptSetTemporaryStatus(temp.Equals("1")); | 7767 | part.ParentGroup.ScriptSetTemporaryStatus(temp.Equals("1")); |
7768 | 7768 | ||
7769 | break; | 7769 | break; |
7770 | 7770 | ||