diff --git a/source/blender/blenkernel/intern/effect.c b/source/blender/blenkernel/intern/effect.c index 817b262b432..d3ca8eadb05 100644 --- a/source/blender/blenkernel/intern/effect.c +++ b/source/blender/blenkernel/intern/effect.c @@ -1330,7 +1330,7 @@ void build_particle_system(Object *ob) par->ctime= -1234567.0; do_ob_key(par); if(par->type==OB_ARMATURE) { - do_all_actions(NULL); // only does this object actions + do_all_actions(par); // only does this object actions clear_object_constraint_status(par); // mysterious call, otherwise do_actions doesnt work??? } par= par->parent; @@ -1410,7 +1410,7 @@ void build_particle_system(Object *ob) do_ob_key(par); if(par->type==OB_ARMATURE) { - do_all_actions(NULL); // only does this object actions + do_all_actions(par); // only does this object actions clear_object_constraint_status(par); // mysterious call, otherwise do_actions doesnt work??? } par= par->parent;