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

This reverts commit a3d140b57c.
avinationmerge
Melanie 2012-09-03 21:53:55 +01:00
parent 574a6e3580
commit f32c74b2ff
1 changed files with 2 additions and 1 deletions

View File

@ -7850,7 +7850,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;