#MSRS - Added priority parameter to MSRSQUEUE

This commit is contained in:
Applevangelist
2026-03-27 17:40:36 +01:00
parent 3f902d8886
commit 830a3b9b1a
2 changed files with 122 additions and 118 deletions
+1 -1
View File
@@ -4262,7 +4262,7 @@ end
-- @return #number Random number between 0 and 1.
function UTILS.LCGRandom()
if UTILS.lcg == nil then
UTILS.LCGRandomSeed()
UTILS.LCGRandomSeed(timer.getTime())
end
UTILS.lcg.seed = (UTILS.lcg.a * UTILS.lcg.seed + UTILS.lcg.c) % UTILS.lcg.m
return UTILS.lcg.seed / UTILS.lcg.m