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

This commit is contained in:
UbitUmarov
2019-09-12 00:25:52 +01:00
parent 5f1fde5f38
commit 85aa77566b

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;
}