allow particles scale max to be 7.96m, supported by protocol

0.9.1.0-post-fixes
UbitUmarov 2019-09-12 00:25:52 +01:00
parent 5f1fde5f38
commit 85aa77566b
1 changed files with 1 additions and 1 deletions

View File

@ -7799,7 +7799,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
private float validParticleScale(float value)
{
if (value > 4.0f) return 4.0f;
if (value > 7.96f) return 7.96f;
return value;
}