diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Primitive.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Primitive.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Primitive.cs b/OpenSim/Region/Environment/Scenes/Primitive.cs index f421529..93e4959 100644 --- a/OpenSim/Region/Environment/Scenes/Primitive.cs +++ b/OpenSim/Region/Environment/Scenes/Primitive.cs | |||
@@ -587,6 +587,16 @@ namespace OpenSim.Region.Environment.Scenes | |||
587 | 587 | ||
588 | #endregion | 588 | #endregion |
589 | 589 | ||
590 | #region Inventory | ||
591 | public void GetInventory(IClientAPI client, uint localID) | ||
592 | { | ||
593 | if (localID == this.m_localId) | ||
594 | { | ||
595 | client.SendTaskInventory(this.m_uuid, 0, new byte[0]); | ||
596 | } | ||
597 | } | ||
598 | #endregion | ||
599 | |||
590 | public void UpdateExtraParam(ushort type, bool inUse, byte[] data) | 600 | public void UpdateExtraParam(ushort type, bool inUse, byte[] data) |
591 | { | 601 | { |
592 | this.m_Shape.ExtraParams = new byte[data.Length + 7]; | 602 | this.m_Shape.ExtraParams = new byte[data.Length + 7]; |