diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-12-13 17:11:10 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-12-13 17:11:10 +0100 |
commit | 27a68c65221cec38085361ef342920031d47d27a (patch) | |
tree | 4a311489bd0ddf8f99c5ea09f7d0ff14517e01b1 | |
parent | ad79c5a13e5932dd6c813ab95c0b00e242a588b0 (diff) | |
download | autotool-27a68c65221cec38085361ef342920031d47d27a.tar.xz |
Fixed crash
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ local function check_tool(stack, node_groups, old_best_time) local level = node_groups[group] if level then local this_time = groupdef.times[level] - if this_time < best_time then + if this_time and this_time < best_time then best_time = this_time end end |