From 4c65128582fc5ff06dfa269f260fb99cf40b5786 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 25 May 2019 22:33:42 -0700 Subject: [PATCH] Properly seeding the RNG --- nowopen | 1 + 1 file changed, 1 insertion(+) diff --git a/nowopen b/nowopen index 3510015..82e3643 100755 --- a/nowopen +++ b/nowopen @@ -165,6 +165,7 @@ if #options == 0 and not raw_print then table.insert(lines, center("¯\\_(ツ)_/¯", cols)) else if randomize then + math.randomseed(os.time()) options = {options[math.random(#options)]} else table.sort(options, function(o1, o2) return o1.until_close < o2.until_close end)