fix #11772, JS random seed was too large (#11820)

This commit is contained in:
Miran
2019-07-25 10:53:50 +02:00
committed by Varriount
parent 3ccda773d6
commit 3bb6d1916e

View File

@@ -608,7 +608,7 @@ when not defined(nimscript):
## * `randomize proc<#randomize,int64>`_ that accepts a seed
## * `initRand proc<#initRand,int64>`_
when defined(JS):
let time = int64(times.epochTime() * 100_000)
let time = int64(times.epochTime() * 1000)
randomize(time)
else:
let now = times.getTime()