Change min tempo time

This commit is contained in:
Hugvey Central Command 2020-02-15 14:16:22 +01:00
parent ac11645dd0
commit a4d6358286
1 changed files with 1 additions and 1 deletions

View File

@ -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