aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorMelanie Thielker2010-07-14 19:21:01 +0200
committerMelanie Thielker2010-07-14 19:21:01 +0200
commit0c445239a68688311d6fa7405ef13ceb3e773930 (patch)
tree77bda9a0ddc1bad20998161198a7190166382432 /OpenSim/Region/Framework/Interfaces
parentMerge branch 'master' into careminster-presence-refactor (diff)
downloadopensim-SC_OLD-0c445239a68688311d6fa7405ef13ceb3e773930.zip
opensim-SC_OLD-0c445239a68688311d6fa7405ef13ceb3e773930.tar.gz
opensim-SC_OLD-0c445239a68688311d6fa7405ef13ceb3e773930.tar.bz2
opensim-SC_OLD-0c445239a68688311d6fa7405ef13ceb3e773930.tar.xz
Remove useless quaternion parameter from AttachObject sig
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs
index 958847b..11887e6 100644
--- a/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/IAttachmentsModule.cs
@@ -45,7 +45,7 @@ namespace OpenSim.Region.Framework.Interfaces
45 /// <param name="rot"></param> 45 /// <param name="rot"></param>
46 /// <param name="silent"></param> 46 /// <param name="silent"></param>
47 void AttachObject( 47 void AttachObject(
48 IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, Quaternion rot, bool silent); 48 IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, bool silent);
49 49
50 /// <summary> 50 /// <summary>
51 /// Attach an object to an avatar. 51 /// Attach an object to an avatar.
@@ -58,7 +58,7 @@ namespace OpenSim.Region.Framework.Interfaces
58 /// <param name="silent"></param> 58 /// <param name="silent"></param>
59 /// <returns>true if the object was successfully attached, false otherwise</returns> 59 /// <returns>true if the object was successfully attached, false otherwise</returns>
60 bool AttachObject( 60 bool AttachObject(
61 IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, Quaternion rot, Vector3 attachPos, bool silent); 61 IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, Vector3 attachPos, bool silent);
62 62
63 /// <summary> 63 /// <summary>
64 /// Rez an attachment from user inventory and change inventory status to match. 64 /// Rez an attachment from user inventory and change inventory status to match.