diff options
Diffstat (limited to 'OpenSim/Region/Environment/Modules')
-rw-r--r-- | OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs index 574bc63..72520c4 100644 --- a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | |||
@@ -51,6 +51,11 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
51 | m_scene = scene; | 51 | m_scene = scene; |
52 | } | 52 | } |
53 | 53 | ||
54 | public IScene Scene | ||
55 | { | ||
56 | get { return m_scene; } | ||
57 | } | ||
58 | |||
54 | public void Say(string message) | 59 | public void Say(string message) |
55 | { | 60 | { |
56 | SendOnChatFromViewer(message, ChatTypeEnum.Say); | 61 | SendOnChatFromViewer(message, ChatTypeEnum.Say); |
@@ -259,7 +264,6 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
259 | public event FriendActionDelegate OnApproveFriendRequest; | 264 | public event FriendActionDelegate OnApproveFriendRequest; |
260 | public event FriendActionDelegate OnDenyFriendRequest; | 265 | public event FriendActionDelegate OnDenyFriendRequest; |
261 | public event FriendshipTermination OnTerminateFriendship; | 266 | public event FriendshipTermination OnTerminateFriendship; |
262 | public event PacketStats OnPacketStats; | ||
263 | 267 | ||
264 | public event EconomyDataRequest OnEconomyDataRequest; | 268 | public event EconomyDataRequest OnEconomyDataRequest; |
265 | public event MoneyBalanceRequest OnMoneyBalanceRequest; | 269 | public event MoneyBalanceRequest OnMoneyBalanceRequest; |
@@ -518,7 +522,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
518 | LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, uint flags, | 522 | LLVector3 acc, LLQuaternion rotation, LLVector3 rvel, uint flags, |
519 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, | 523 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, |
520 | uint parentID, | 524 | uint parentID, |
521 | byte[] particleSystem, byte clickAction, bool track) | 525 | byte[] particleSystem, byte clickAction) |
522 | { | 526 | { |
523 | } | 527 | } |
524 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, | 528 | public virtual void SendPrimitiveToClient(ulong regionHandle, ushort timeDilation, uint localID, |
@@ -527,7 +531,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
527 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, | 531 | LLUUID objectID, LLUUID ownerID, string text, byte[] color, |
528 | uint parentID, | 532 | uint parentID, |
529 | byte[] particleSystem, byte clickAction, byte[] textureanimation, | 533 | byte[] particleSystem, byte clickAction, byte[] textureanimation, |
530 | bool attachment, uint AttachmentPoint, LLUUID AssetId, LLUUID SoundId, double SoundVolume, byte SoundFlags, double SoundRadius, bool track) | 534 | bool attachment, uint AttachmentPoint, LLUUID AssetId, LLUUID SoundId, double SoundVolume, byte SoundFlags, double SoundRadius) |
531 | { | 535 | { |
532 | } | 536 | } |
533 | public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, | 537 | public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, |
@@ -711,6 +715,10 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
711 | { | 715 | { |
712 | } | 716 | } |
713 | 717 | ||
718 | public void ProcessInPacket(Packet NewPack) | ||
719 | { | ||
720 | } | ||
721 | |||
714 | public void Close(bool ShutdownCircuit) | 722 | public void Close(bool ShutdownCircuit) |
715 | { | 723 | { |
716 | } | 724 | } |