Skip to content

Commit

Permalink
FACTO-53: decreased scale low bound and std dev
Browse files Browse the repository at this point in the history
  • Loading branch information
veden committed Jan 17, 2022
1 parent 624b006 commit 0725073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prototypes/SwarmUtils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0725073

Please sign in to comment.