Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Ketsji')
-rw-r--r--source/gameengine/Ketsji/BL_Action.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/BL_Action.cpp b/source/gameengine/Ketsji/BL_Action.cpp
index c187199c8d0..15be4c46894 100644
--- a/source/gameengine/Ketsji/BL_Action.cpp
+++ b/source/gameengine/Ketsji/BL_Action.cpp
@@ -127,7 +127,7 @@ bool BL_Action::Play(const char* name,
// Only start playing a new action if we're done, or if
// the new action has a higher priority
- if (priority != 0 && !IsDone() && priority >= m_priority)
+ if (!IsDone() && priority > m_priority)
return false;
m_priority = priority;
bAction* prev_action = m_action;