mirror of
https://github.com/kepler155c/opus
synced 2025-01-26 15:16:52 +00:00
Fixed util.randomFloat
Fixed if both max or min is nil, it returns a number between 0 and 1
This commit is contained in:
parent
30640fd415
commit
2e94b61dff
@ -137,7 +137,7 @@ end
|
||||
|
||||
function Util.randomFloat(max, min)
|
||||
min = min or 0
|
||||
max = max or 0
|
||||
max = max or 1
|
||||
return (max-min) * math.random() + min
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user