aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-02-04 23:14:21 +0000
committerJustin Clark-Casey (justincc)2011-02-04 23:14:21 +0000
commit5b7a5a5b8b6221b2fe42f645c757c2e5e9132aa6 (patch)
tree4eed5650a13b0713ad938069d81984ea8d62d70f
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-5b7a5a5b8b6221b2fe42f645c757c2e5e9132aa6.zip
opensim-SC_OLD-5b7a5a5b8b6221b2fe42f645c757c2e5e9132aa6.tar.gz
opensim-SC_OLD-5b7a5a5b8b6221b2fe42f645c757c2e5e9132aa6.tar.bz2
opensim-SC_OLD-5b7a5a5b8b6221b2fe42f645c757c2e5e9132aa6.tar.xz
Add position to IM sent from llInstantMessage(), to better fulfill client expectations
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index 73fe160..72ee495 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -3061,7 +3061,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
3061 msg.fromGroup = false;// fromGroup; 3061 msg.fromGroup = false;// fromGroup;
3062 msg.offline = (byte)0; //offline; 3062 msg.offline = (byte)0; //offline;
3063 msg.ParentEstateID = 0; //ParentEstateID; 3063 msg.ParentEstateID = 0; //ParentEstateID;
3064 msg.Position = Vector3.Zero;// new Vector3(m_host.AbsolutePosition); 3064 msg.Position = new Vector3(m_host.AbsolutePosition);
3065 msg.RegionID = World.RegionInfo.RegionID.Guid;//RegionID.Guid; 3065 msg.RegionID = World.RegionInfo.RegionID.Guid;//RegionID.Guid;
3066 msg.binaryBucket 3066 msg.binaryBucket
3067 = Util.StringToBytes256( 3067 = Util.StringToBytes256(