1
0
mirror of https://github.com/veden/Rampant.git synced 2025-02-05 13:14:51 +02:00

FACTO-53: decreased scale low bound and std dev

This commit is contained in:
Aaron Veden 2022-01-17 10:27:12 -08:00
parent 624b006f2c
commit 0725073711
No known key found for this signature in database
GPG Key ID: FF5990B1C6DD3F84

View File

@ -715,7 +715,7 @@ local function generateApperance(unit, invert)
local tier = unit.effectiveLevel
if unit.scale then
local scaleValue = unit.scale[tier]
local scale = gaussianRandomRangeRG(scaleValue, scaleValue * 0.15, scaleValue * 0.70, scaleValue * 1.30, xorRandom)
local scale = gaussianRandomRangeRG(scaleValue, scaleValue * 0.20, scaleValue * 0.50, scaleValue * 1.30, xorRandom)
unit.scale = scale
end
if unit.tint then