* 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.

avinationmerge
teravus 2013-01-01 23:11:46 -05:00
parent 397aa74777
commit f9148e5fc7
1 changed files with 1 additions and 1 deletions

View File

@ -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);