mirror of
https://github.com/kepler155c/opus
synced 2025-10-19 09:47:39 +00:00
Fixed util.randomFloat
Fixed if max is nil, that it behaves like math.random()
This commit is contained in:
@@ -137,6 +137,7 @@ end
|
|||||||
|
|
||||||
function Util.randomFloat(max, min)
|
function Util.randomFloat(max, min)
|
||||||
min = min or 0
|
min = min or 0
|
||||||
|
max = max or 0
|
||||||
return (max-min) * math.random() + min
|
return (max-min) * math.random() + min
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user