mirror of
https://github.com/kepler155c/opus
synced 2024-12-26 00:20:26 +00:00
Fixed util.randomFloat
Fixed if max is nil, that it behaves like math.random()
This commit is contained in:
parent
3f3a2deaa8
commit
30640fd415
@ -137,6 +137,7 @@ end
|
||||
|
||||
function Util.randomFloat(max, min)
|
||||
min = min or 0
|
||||
max = max or 0
|
||||
return (max-min) * math.random() + min
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user