diff options
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs index d0fbfb9..acad64a 100644 --- a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | |||
@@ -325,6 +325,10 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
325 | public event ObjectOwner OnObjectOwner; | 325 | public event ObjectOwner OnObjectOwner; |
326 | 326 | ||
327 | public event DirPlacesQuery OnDirPlacesQuery; | 327 | public event DirPlacesQuery OnDirPlacesQuery; |
328 | public event DirFindQuery OnDirFindQuery; | ||
329 | public event DirLandQuery OnDirLandQuery; | ||
330 | public event DirPopularQuery OnDirPopularQuery; | ||
331 | public event DirClassifiedQuery OnDirClassifiedQuery; | ||
328 | 332 | ||
329 | public event MapItemRequest OnMapItemRequest; | 333 | public event MapItemRequest OnMapItemRequest; |
330 | 334 | ||
@@ -899,6 +903,30 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
899 | { | 903 | { |
900 | } | 904 | } |
901 | 905 | ||
906 | public void SendDirPeopleReply(UUID queryID, DirPeopleReplyData[] data) | ||
907 | { | ||
908 | } | ||
909 | |||
910 | public void SendDirEventsReply(UUID queryID, DirEventsReplyData[] data) | ||
911 | { | ||
912 | } | ||
913 | |||
914 | public void SendDirGroupsReply(UUID queryID, DirGroupsReplyData[] data) | ||
915 | { | ||
916 | } | ||
917 | |||
918 | public void SendDirClassifiedReply(UUID queryID, DirClassifiedReplyData[] data) | ||
919 | { | ||
920 | } | ||
921 | |||
922 | public void SendDirLandReply(UUID queryID, DirLandReplyData[] data) | ||
923 | { | ||
924 | } | ||
925 | |||
926 | public void SendDirPopularReply(UUID queryID, DirPopularReplyData[] data) | ||
927 | { | ||
928 | } | ||
929 | |||
902 | public void SendMapItemReply(mapItemReply[] replies, uint mapitemtype, uint flags) | 930 | public void SendMapItemReply(mapItemReply[] replies, uint mapitemtype, uint flags) |
903 | { | 931 | { |
904 | } | 932 | } |