diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 6ccf86d..f075d50 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7450,12 +7450,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7450 | hollow = 0.70f; | 7450 | hollow = 0.70f; |
7451 | } | 7451 | } |
7452 | } | 7452 | } |
7453 | // Otherwise, hollow is limited to 95%. | 7453 | // Otherwise, hollow is limited to 99%. |
7454 | else | 7454 | else |
7455 | { | 7455 | { |
7456 | if (hollow > 0.95f) | 7456 | if (hollow > 0.99f) |
7457 | { | 7457 | { |
7458 | hollow = 0.95f; | 7458 | hollow = 0.99f; |
7459 | } | 7459 | } |
7460 | } | 7460 | } |
7461 | shapeBlock.ProfileHollow = (ushort)(50000 * hollow); | 7461 | shapeBlock.ProfileHollow = (ushort)(50000 * hollow); |