diff options
author | Justin Clarke Casey | 2008-09-16 18:49:57 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-16 18:49:57 +0000 |
commit | 0e6e8624ad93ed2669b178a577729e93cdf186e1 (patch) | |
tree | 578779bc8d8a8d23f0201bc16f554bcb7501e3f8 /OpenSim/Region/ScriptEngine/Shared/Api | |
parent | add an inventory change test. (diff) | |
download | opensim-SC_OLD-0e6e8624ad93ed2669b178a577729e93cdf186e1.zip opensim-SC_OLD-0e6e8624ad93ed2669b178a577729e93cdf186e1.tar.gz opensim-SC_OLD-0e6e8624ad93ed2669b178a577729e93cdf186e1.tar.bz2 opensim-SC_OLD-0e6e8624ad93ed2669b178a577729e93cdf186e1.tar.xz |
* Apply http://opensimulator.org/mantis/view.php?id=2205 with a few small tweaks
* LSL Conformance: llSetPayPrice should accept more than four arguments in list
* Thanks kcozens!
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 9864394..7892b50 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -7279,9 +7279,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
7279 | { | 7279 | { |
7280 | m_host.AddScriptLPS(1); | 7280 | m_host.AddScriptLPS(1); |
7281 | 7281 | ||
7282 | if (quick_pay_buttons.Data.Length != 4) | 7282 | if (quick_pay_buttons.Data.Length < 4) |
7283 | { | 7283 | { |
7284 | LSLError("List must have 4 elements"); | 7284 | LSLError("List must have at least 4 elements"); |
7285 | return; | 7285 | return; |
7286 | } | 7286 | } |
7287 | m_host.ParentGroup.RootPart.PayPrice[0]=price; | 7287 | m_host.ParentGroup.RootPart.PayPrice[0]=price; |