diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index c13e8b2..75b6b0e 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7851,7 +7851,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7851 | UUID key; | 7851 | UUID key; |
7852 | ILandObject land = World.LandChannel.GetLandObject(m_host.AbsolutePosition); | 7852 | ILandObject land = World.LandChannel.GetLandObject(m_host.AbsolutePosition); |
7853 | 7853 | ||
7854 | if (World.Permissions.CanEditParcelProperties(m_host.OwnerID, land, GroupPowers.LandManageBanned, false)) | 7854 | if (World.Permissions.CanEditParcelProperties(m_host.OwnerID, land, GroupPowers.LandManagePasses, false)) |
7855 | { | 7855 | { |
7856 | int expires = 0; | 7856 | int expires = 0; |
7857 | if (hours != 0) | 7857 | if (hours != 0) |
@@ -13073,7 +13073,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
13073 | m_host.AddScriptLPS(1); | 13073 | m_host.AddScriptLPS(1); |
13074 | UUID key; | 13074 | UUID key; |
13075 | ILandObject land = World.LandChannel.GetLandObject(m_host.AbsolutePosition); | 13075 | ILandObject land = World.LandChannel.GetLandObject(m_host.AbsolutePosition); |
13076 | if (World.Permissions.CanEditParcelProperties(m_host.OwnerID, land, GroupPowers.LandManageAllowed, false)) | 13076 | if (World.Permissions.CanEditParcelProperties(m_host.OwnerID, land, GroupPowers.LandManagePasses, false)) |
13077 | { | 13077 | { |
13078 | if (UUID.TryParse(avatar, out key)) | 13078 | if (UUID.TryParse(avatar, out key)) |
13079 | { | 13079 | { |
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index 8780e49..a65f71f 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -525,7 +525,7 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
525 | } | 525 | } |
526 | 526 | ||
527 | [Serializable] | 527 | [Serializable] |
528 | public class list: MarshalByRefObject | 528 | public class list |
529 | { | 529 | { |
530 | private object[] m_data; | 530 | private object[] m_data; |
531 | 531 | ||