Develop 1.8 #20

Merged
Kan18 merged 242 commits from develop-1.8 into master-1.8 2019-11-10 20:52:08 -05:00
Showing only changes of commit 2e94b61dff - Show all commits

View File

@@ -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