aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestClient.cs
diff options
context:
space:
mode:
authorUbitUmarov2019-03-30 12:07:49 +0000
committerUbitUmarov2019-03-30 12:07:49 +0000
commit6cf85a3db111c2f8e56dde8a05ff3cf13f5ecd14 (patch)
tree553b71ac6bc6bd451a8e733a3612f18f9f936d7e /OpenSim/Tests/Common/Mock/TestClient.cs
parentYengine: fix scripts resume on attachments drop (diff)
downloadopensim-SC-6cf85a3db111c2f8e56dde8a05ff3cf13f5ecd14.zip
opensim-SC-6cf85a3db111c2f8e56dde8a05ff3cf13f5ecd14.tar.gz
opensim-SC-6cf85a3db111c2f8e56dde8a05ff3cf13f5ecd14.tar.bz2
opensim-SC-6cf85a3db111c2f8e56dde8a05ff3cf13f5ecd14.tar.xz
a few more changes on initial objects send
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 4fe2684..0af49f2 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -119,7 +119,7 @@ namespace OpenSim.Tests.Common
119 119
120 public event DeRezObject OnDeRezObject; 120 public event DeRezObject OnDeRezObject;
121 public event RezRestoreToWorld OnRezRestoreToWorld; 121 public event RezRestoreToWorld OnRezRestoreToWorld;
122 public event Action<IClientAPI, uint> OnRegionHandShakeReply; 122 public event Action<IClientAPI> OnRegionHandShakeReply;
123 public event GenericCall1 OnRequestWearables; 123 public event GenericCall1 OnRequestWearables;
124 public event Action<IClientAPI, bool> OnCompleteMovementToRegion; 124 public event Action<IClientAPI, bool> OnCompleteMovementToRegion;
125 public event UpdateAgent OnPreAgentUpdate; 125 public event UpdateAgent OnPreAgentUpdate;
@@ -880,7 +880,7 @@ namespace OpenSim.Tests.Common
880 { 880 {
881 if (OnRegionHandShakeReply != null) 881 if (OnRegionHandShakeReply != null)
882 { 882 {
883 OnRegionHandShakeReply(this, 0); 883 OnRegionHandShakeReply(this);
884 } 884 }
885 } 885 }
886 886
@@ -1398,7 +1398,10 @@ namespace OpenSim.Tests.Common
1398 { 1398 {
1399 } 1399 }
1400 1400
1401 public void CheckViewerCaps() { } 1401 public uint GetViewerCaps()
1402 {
1403 return 0;
1404 }
1402 1405
1403 } 1406 }
1404} 1407}