aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
diff options
context:
space:
mode:
authorUbitUmarov2019-03-30 12:07:49 +0000
committerUbitUmarov2019-03-30 12:07:49 +0000
commit6cf85a3db111c2f8e56dde8a05ff3cf13f5ecd14 (patch)
tree553b71ac6bc6bd451a8e733a3612f18f9f936d7e /OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.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/Region/OptionalModules/World/NPC/NPCAvatar.cs')
-rw-r--r--OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
index a7ed7d1..954d336 100644
--- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
+++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs
@@ -319,7 +319,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC
319 319
320 public event DeRezObject OnDeRezObject; 320 public event DeRezObject OnDeRezObject;
321 public event RezRestoreToWorld OnRezRestoreToWorld; 321 public event RezRestoreToWorld OnRezRestoreToWorld;
322 public event Action<IClientAPI, uint> OnRegionHandShakeReply; 322 public event Action<IClientAPI> OnRegionHandShakeReply;
323 public event GenericCall1 OnRequestWearables; 323 public event GenericCall1 OnRequestWearables;
324 public event Action<IClientAPI, bool> OnCompleteMovementToRegion; 324 public event Action<IClientAPI, bool> OnCompleteMovementToRegion;
325 public event UpdateAgent OnPreAgentUpdate; 325 public event UpdateAgent OnPreAgentUpdate;
@@ -928,7 +928,7 @@ namespace OpenSim.Region.OptionalModules.World.NPC
928 { 928 {
929 if (OnRegionHandShakeReply != null) 929 if (OnRegionHandShakeReply != null)
930 { 930 {
931 OnRegionHandShakeReply(this, 0); 931 OnRegionHandShakeReply(this);
932 } 932 }
933 } 933 }
934 934
@@ -1384,7 +1384,10 @@ namespace OpenSim.Region.OptionalModules.World.NPC
1384 return 0; 1384 return 0;
1385 } 1385 }
1386 1386
1387 public void CheckViewerCaps() { } 1387 public uint GetViewerCaps()
1388 {
1389 return 0;
1390 }
1388 1391
1389 } 1392 }
1390} 1393}