Revert "no need to assign rotation to a variable now"

This reverts commit a3d140b57c.
This commit is contained in:
Melanie
2012-09-03 21:52:03 +01:00
parent 359f9efc76
commit 29218cdb31

View File

@@ -7280,7 +7280,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if (remain < 1)
return null;
SetRot(part, rules.GetQuaternionItem(idx++));
LSL_Rotation q = rules.GetQuaternionItem(idx++);
SetRot(part, q);
break;