diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index cf2076f..6360c99 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -189,7 +189,8 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
189 | public event DeRezObject OnDeRezObject; | 189 | public event DeRezObject OnDeRezObject; |
190 | public event Action<IClientAPI> OnRegionHandShakeReply; | 190 | public event Action<IClientAPI> OnRegionHandShakeReply; |
191 | public event GenericCall2 OnRequestWearables; | 191 | public event GenericCall2 OnRequestWearables; |
192 | public event GenericCall2 OnCompleteMovementToRegion; | 192 | public event GenericCall1 OnCompleteMovementToRegion; |
193 | public event UpdateAgent OnPreAgentUpdate; | ||
193 | public event UpdateAgent OnAgentUpdate; | 194 | public event UpdateAgent OnAgentUpdate; |
194 | public event AgentRequestSit OnAgentRequestSit; | 195 | public event AgentRequestSit OnAgentRequestSit; |
195 | public event AgentSit OnAgentSit; | 196 | public event AgentSit OnAgentSit; |
@@ -234,6 +235,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
234 | public event Action<UUID> OnRemoveAvatar; | 235 | public event Action<UUID> OnRemoveAvatar; |
235 | 236 | ||
236 | public event CreateNewInventoryItem OnCreateNewInventoryItem; | 237 | public event CreateNewInventoryItem OnCreateNewInventoryItem; |
238 | public event LinkInventoryItem OnLinkInventoryItem; | ||
237 | public event CreateInventoryFolder OnCreateNewInventoryFolder; | 239 | public event CreateInventoryFolder OnCreateNewInventoryFolder; |
238 | public event UpdateInventoryFolder OnUpdateInventoryFolder; | 240 | public event UpdateInventoryFolder OnUpdateInventoryFolder; |
239 | public event MoveInventoryFolder OnMoveInventoryFolder; | 241 | public event MoveInventoryFolder OnMoveInventoryFolder; |
@@ -457,6 +459,11 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
457 | set { } | 459 | set { } |
458 | } | 460 | } |
459 | 461 | ||
462 | public bool IsLoggingOut | ||
463 | { | ||
464 | get { return false; } | ||
465 | set { } | ||
466 | } | ||
460 | public UUID ActiveGroupId | 467 | public UUID ActiveGroupId |
461 | { | 468 | { |
462 | get { return UUID.Zero; } | 469 | get { return UUID.Zero; } |
@@ -739,7 +746,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
739 | 746 | ||
740 | if (OnCompleteMovementToRegion != null) | 747 | if (OnCompleteMovementToRegion != null) |
741 | { | 748 | { |
742 | OnCompleteMovementToRegion(); | 749 | OnCompleteMovementToRegion(this); |
743 | } | 750 | } |
744 | } | 751 | } |
745 | public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) | 752 | public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) |
@@ -1150,5 +1157,13 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
1150 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1157 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1151 | { | 1158 | { |
1152 | } | 1159 | } |
1160 | |||
1161 | public void SendChangeUserRights(UUID agentID, UUID friendID, int rights) | ||
1162 | { | ||
1163 | } | ||
1164 | |||
1165 | public void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId) | ||
1166 | { | ||
1167 | } | ||
1153 | } | 1168 | } |
1154 | } | 1169 | } |