From a4d6358286c1a08776241fdd965bcd38ab58b719 Mon Sep 17 00:00:00 2001 From: Hugvey Central Command Date: Sat, 15 Feb 2020 14:16:22 +0100 Subject: [PATCH] Change min tempo time --- hugvey/story.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugvey/story.py b/hugvey/story.py index e72476d..e4a1ee1 100644 --- a/hugvey/story.py +++ b/hugvey/story.py @@ -2097,7 +2097,7 @@ class Story(object): Apply the particularities of the configuration.time_factor """ time = float(time) - if time < 1: + if time < 1.5: # short timings are not influenced by this factor return time return time * self.configuration.time_factor