mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
fix incorrect ids in llDetected collision parameters
This commit is contained in:
@@ -266,7 +266,8 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||
return;
|
||||
|
||||
Name = obj.nameStr;
|
||||
Owner = obj.keyUUID;
|
||||
Key = obj.keyUUID;
|
||||
Owner = obj.ownerUUID;
|
||||
Group = obj.groupUUID;
|
||||
Position = new LSL_Types.Vector3(obj.posVector);
|
||||
Rotation = new LSL_Types.Quaternion(obj.rotQuat);
|
||||
@@ -281,7 +282,8 @@ namespace OpenSim.Region.ScriptEngine.Shared
|
||||
return;
|
||||
|
||||
Name = obj.nameStr;
|
||||
Owner = obj.keyUUID;
|
||||
Key = obj.keyUUID;
|
||||
Owner = obj.ownerUUID;
|
||||
Group = obj.groupUUID;
|
||||
Position = new LSL_Types.Vector3(obj.posVector);
|
||||
Rotation = new LSL_Types.Quaternion(obj.rotQuat);
|
||||
|
||||
Reference in New Issue
Block a user