aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
diff options
context:
space:
mode:
authorDalien Talbot2008-02-10 22:23:11 +0000
committerDalien Talbot2008-02-10 22:23:11 +0000
commitc935b308e67d4468437fa201a3bf444d9715f377 (patch)
treedb8c309027f243c35c236093c0c0780bb5327284 /OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
parentBugfix to state command: (diff)
downloadopensim-SC_OLD-c935b308e67d4468437fa201a3bf444d9715f377.zip
opensim-SC_OLD-c935b308e67d4468437fa201a3bf444d9715f377.tar.gz
opensim-SC_OLD-c935b308e67d4468437fa201a3bf444d9715f377.tar.bz2
opensim-SC_OLD-c935b308e67d4468437fa201a3bf444d9715f377.tar.xz
The very beginnings of attachments (no detachments! :)
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index cc9d294..fee1e66 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -33,6 +33,10 @@ using libsecondlife.Packets;
33using OpenSim.Framework; 33using OpenSim.Framework;
34using OpenSim.Framework.Communications.Cache; 34using OpenSim.Framework.Communications.Cache;
35using OpenSim.Framework.Console; 35using OpenSim.Framework.Console;
36using System.IO;
37using System.Text;
38using System.Xml;
39
36 40
37namespace OpenSim.Region.Environment.Scenes 41namespace OpenSim.Region.Environment.Scenes
38{ 42{
@@ -766,6 +770,12 @@ namespace OpenSim.Region.Environment.Scenes
766 } 770 }
767 } 771 }
768 } 772 }
773 public void RezSingleAttachment(IClientAPI remoteClient, LLUUID itemID, uint AttachmentPt,
774 uint ItemFlags, uint NextOwnerMask)
775 {
776 System.Console.WriteLine("RezSingleAttachment: unimplemented yet");
777 }
778
769 779
770 private void AddRezObject(string xmlData, LLVector3 pos) 780 private void AddRezObject(string xmlData, LLVector3 pos)
771 { 781 {