diff options
author | Melanie Thielker | 2010-06-24 20:51:04 +0200 |
---|---|---|
committer | Melanie Thielker | 2010-06-24 20:51:04 +0200 |
commit | f186882c0fbe9675a000417e27354e323315de1a (patch) | |
tree | dd570ecc9693e7c4d001794c7cc6b1a68a19c475 /OpenSim/Region | |
parent | Add the object owner UUID into the binary bucket of object to user IM (diff) | |
download | opensim-SC_OLD-f186882c0fbe9675a000417e27354e323315de1a.zip opensim-SC_OLD-f186882c0fbe9675a000417e27354e323315de1a.tar.gz opensim-SC_OLD-f186882c0fbe9675a000417e27354e323315de1a.tar.bz2 opensim-SC_OLD-f186882c0fbe9675a000417e27354e323315de1a.tar.xz |
Also make prims send the proper position. I hate it when people comment
out things just because they're "not yet used". Grrrr.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 0abc828..fb191e6 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3266,12 +3266,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3266 | msg.message = message.Substring(0, 1024); | 3266 | msg.message = message.Substring(0, 1024); |
3267 | else | 3267 | else |
3268 | msg.message = message; | 3268 | msg.message = message; |
3269 | msg.dialog = (byte)19; // messgage from script ??? // dialog; | 3269 | msg.dialog = (byte)19; // MessageFromObject |
3270 | msg.fromGroup = false;// fromGroup; | 3270 | msg.fromGroup = false;// fromGroup; |
3271 | msg.offline = (byte)0; //offline; | 3271 | msg.offline = (byte)0; //offline; |
3272 | msg.ParentEstateID = 0; //ParentEstateID; | 3272 | msg.ParentEstateID = World.RegionInfo.EstateSettings.EstateID; |
3273 | msg.Position = Vector3.Zero;// new Vector3(m_host.AbsolutePosition); | 3273 | msg.Position = new Vector3(m_host.AbsolutePosition); |
3274 | msg.RegionID = World.RegionInfo.RegionID.Guid;//RegionID.Guid; | 3274 | msg.RegionID = World.RegionInfo.RegionID.Guid; |
3275 | msg.binaryBucket = Util.StringToBytes256(m_host.OwnerID.ToString()); | 3275 | msg.binaryBucket = Util.StringToBytes256(m_host.OwnerID.ToString()); |
3276 | 3276 | ||
3277 | if (m_TransferModule != null) | 3277 | if (m_TransferModule != null) |