mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
* This is actually the fix described the last commit.. I had commented it out to see if the problem had affected all attachments or just HUD attachments.
This commit is contained in:
@@ -2363,7 +2363,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
// RootPart != null should shortcircuit
|
||||
|
||||
// try to let this work as in SL...
|
||||
if (m_host.ParentID == 0 ) //|| (rootPart != null && m_host.LocalId == rootPart.LocalId))
|
||||
if (m_host.ParentID == 0 || (rootPart != null && m_host.LocalId == rootPart.LocalId))
|
||||
{
|
||||
// special case: If we are root, rotate complete SOG to new rotation
|
||||
SetRot(m_host, rot);
|
||||
|
||||
Reference in New Issue
Block a user