aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Interfaces/ILandObject.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Interfaces/ILandObject.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ILandObject.cs b/OpenSim/Region/Environment/Interfaces/ILandObject.cs
index 420ffc3..25c51de 100644
--- a/OpenSim/Region/Environment/Interfaces/ILandObject.cs
+++ b/OpenSim/Region/Environment/Interfaces/ILandObject.cs
@@ -27,7 +27,6 @@
27 27
28using System.Collections.Generic; 28using System.Collections.Generic;
29using libsecondlife; 29using libsecondlife;
30using libsecondlife.Packets;
31using OpenSim.Framework; 30using OpenSim.Framework;
32using OpenSim.Region.Environment.Scenes; 31using OpenSim.Region.Environment.Scenes;
33 32
@@ -44,12 +43,12 @@ namespace OpenSim.Region.Environment.Interfaces
44 void sendLandUpdateToAvatarsOverMe(); 43 void sendLandUpdateToAvatarsOverMe();
45 44
46 void sendLandProperties(int sequence_id, bool snap_selection, int request_result, IClientAPI remote_client); 45 void sendLandProperties(int sequence_id, bool snap_selection, int request_result, IClientAPI remote_client);
47 void updateLandProperties(ParcelPropertiesUpdatePacket packet, IClientAPI remote_client); 46 void updateLandProperties(LandUpdateArgs args, IClientAPI remote_client);
48 bool isEitherBannedOrRestricted(LLUUID avatar); 47 bool isEitherBannedOrRestricted(LLUUID avatar);
49 bool isBannedFromLand(LLUUID avatar); 48 bool isBannedFromLand(LLUUID avatar);
50 bool isRestrictedFromLand(LLUUID avatar); 49 bool isRestrictedFromLand(LLUUID avatar);
51 void sendLandUpdateToClient(IClientAPI remote_client); 50 void sendLandUpdateToClient(IClientAPI remote_client);
52 ParcelAccessListReplyPacket.ListBlock[] createAccessListArrayByFlag(ParcelManager.AccessList flag); 51 List<LLUUID> createAccessListArrayByFlag(ParcelManager.AccessList flag);
53 void sendAccessList(LLUUID agentID, LLUUID sessionID, uint flags, int sequenceID, IClientAPI remote_client); 52 void sendAccessList(LLUUID agentID, LLUUID sessionID, uint flags, int sequenceID, IClientAPI remote_client);
54 void updateAccessList(uint flags, List<ParcelManager.ParcelAccessEntry> entries, IClientAPI remote_client); 53 void updateAccessList(uint flags, List<ParcelManager.ParcelAccessEntry> entries, IClientAPI remote_client);
55 void updateLandBitmapByteArray(); 54 void updateLandBitmapByteArray();