diff options
Diffstat (limited to 'init.lua')
-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 |