fixes #1149 reverse play on non loop removed extra condition
diff --git a/player/js/animation/AnimationItem.js b/player/js/animation/AnimationItem.js
index 5ba3d22..3183ae7 100644
--- a/player/js/animation/AnimationItem.js
+++ b/player/js/animation/AnimationItem.js
@@ -378,9 +378,7 @@
                 } else {
                     this.trigger('loopComplete');
                 }
-            } else if (!this.loop && this.playCount-- === 0) {
-                this.setCurrentRawFrameValue(this.totalFrames + (nextValue % this.totalFrames));
-            }else {
+            } else {
                 _isComplete = true;
                 nextValue = 0;
             }