diff options
author | Melanie Thielker | 2008-11-11 19:08:59 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-11 19:08:59 +0000 |
commit | 47a5d71b7e7e8a354bd5640055cf4efdb881b954 (patch) | |
tree | aaea097d01d36e826f9596bcb4139f445b919888 /OpenSim/Region/Environment/Modules | |
parent | minor: refactor some SceneTests code for future tests (diff) | |
download | opensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.zip opensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.tar.gz opensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.tar.bz2 opensim-SC_OLD-47a5d71b7e7e8a354bd5640055cf4efdb881b954.tar.xz |
Prevent pieces from other people's HUDs from displaying at the center of
every user's HUD
Diffstat (limited to 'OpenSim/Region/Environment/Modules')
-rw-r--r-- | OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs index 7b077ec..2792bf8 100644 --- a/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/Environment/Modules/World/NPC/NPCAvatar.cs | |||
@@ -560,7 +560,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
560 | { | 560 | { |
561 | } | 561 | } |
562 | 562 | ||
563 | public virtual void AttachObject(uint localID, Quaternion rotation, byte attachPoint) | 563 | public virtual void AttachObject(uint localID, Quaternion rotation, byte attachPoint, UUID ownerID) |
564 | { | 564 | { |
565 | } | 565 | } |
566 | 566 | ||
@@ -587,7 +587,7 @@ namespace OpenSim.Region.Environment.Modules.World.NPC | |||
587 | } | 587 | } |
588 | public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, | 588 | public virtual void SendPrimTerseUpdate(ulong regionHandle, ushort timeDilation, uint localID, |
589 | Vector3 position, Quaternion rotation, Vector3 velocity, | 589 | Vector3 position, Quaternion rotation, Vector3 velocity, |
590 | Vector3 rotationalvelocity, byte state, UUID AssetId) | 590 | Vector3 rotationalvelocity, byte state, UUID AssetId, UUID ownerID, int attachPoint) |
591 | { | 591 | { |
592 | } | 592 | } |
593 | 593 | ||