aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestClient.cs
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/Tests/Common/Mock/TestClient.cs
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 '')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index fe93d6b..83bd9d9 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -246,6 +246,8 @@ namespace OpenSim.Tests.Common.Mock
246 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; 246 public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest;
247 public event EventGodDelete OnEventGodDelete; 247 public event EventGodDelete OnEventGodDelete;
248 248
249 public event ParcelDwellRequest OnParcelDwellRequest;
250
249#pragma warning restore 67 251#pragma warning restore 67
250 252
251 /// <value> 253 /// <value>
@@ -986,6 +988,8 @@ namespace OpenSim.Tests.Common.Mock
986 { 988 {
987 } 989 }
988 990
989 991 public void SendParcelDwellReply(int localID, UUID parcelID, float dwell)
992 {
993 }
990 } 994 }
991} 995}