aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/World/NPC
diff options
context:
space:
mode:
authorMelanie Thielker2009-01-03 20:45:33 +0000
committerMelanie Thielker2009-01-03 20:45:33 +0000
commit7beb8a5abb801c285d16a5b1e4d8538d0381c671 (patch)
treed0a64f8e4e32a139ce3ace1d29fd5a73ae88c38c /OpenSim/Region/Environment/Modules/World/NPC
parentFixed logic for sending foreign user information (HG). (diff)
downloadopensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.zip
opensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.tar.gz
opensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.tar.bz2
opensim-SC_OLD-7beb8a5abb801c285d16a5b1e4d8538d0381c671.tar.xz
Plumb the remaining dwell packets
Diffstat (limited to 'OpenSim/Region/Environment/Modules/World/NPC')
-rw-r--r--OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs
index 61b8690..2b91391 100644
--- a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs
+++ b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs
@@ -355,6 +355,8 @@ namespace OpenSim.Region.Environment.Modules.World.NPC
355 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; 355 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
356 public event EventGodDelete OnEventGodDelete; 356 public event EventGodDelete OnEventGodDelete;
357 357
358 public event ParcelDwellRequest OnParcelDwellRequest;
359
358#pragma warning restore 67 360#pragma warning restore 67
359 361
360 #endregion 362 #endregion
@@ -1039,6 +1041,9 @@ namespace OpenSim.Region.Environment.Modules.World.NPC
1039 { 1041 {
1040 } 1042 }
1041 1043
1044 public void SendParcelDwellReply(int localID, UUID parcelID, float dwell)
1045 {
1046 }
1042 1047
1043 #endregion 1048 #endregion
1044 } 1049 }