Merge pull request #4215 from pchote/mcv-fix

Obey order.Queued in DeployTransform.
This commit is contained in:
Matthias Mailänder
2013-12-03 06:35:43 -08:00
2 changed files with 7 additions and 3 deletions

View File

@@ -90,7 +90,8 @@ end
Actor.DeployTransform = function(actor)
Actor.CallFunc(actor, function()
Actor.Trait(actor, "Transforms"):DeployTransform()
-- Queue the transform order
Actor.Trait(actor, "Transforms"):DeployTransform(true)
end)
end