From 26ef284ae4468b6ed3a41b07394a8c2e2512d0f5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 15 Jul 2013 09:42:13 +0000 Subject: remove unneeded check --- io_scene_fbx/export_fbx.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py index 802e7950..da833bad 100644 --- a/io_scene_fbx/export_fbx.py +++ b/io_scene_fbx/export_fbx.py @@ -2605,10 +2605,9 @@ Connections: {''') # get the current action first so we can use it if we only export one action (JCB) for my_arm in ob_arms: - if not blenActionDefault: - blenActionDefault = my_arm.blenAction - if blenActionDefault: - break + blenActionDefault = my_arm.blenAction + if blenActionDefault: + break if use_anim_action_all: tmp_actions = bpy.data.actions[:] -- cgit v1.2.3