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

This reverts commit a3d140b57c.
integration
Melanie 2012-09-03 21:52:03 +01:00
parent 359f9efc76
commit 29218cdb31
1 changed files with 2 additions and 1 deletions

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;