v0.52
- Fix to make random selection better when opening the GUI multiple times quickly
math.randomseed fix
--random number
--get os.time() as a seed
local t = os.time()
--as os.time() updates slowly we multiply it by random number before passing to randomseed
math.randomseed((t * math.random(1,500)))
--get random number based on os.time()
local ran_num = math.random(1, num_available_insts)