aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index c9d6742..3a229c2 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -6363,6 +6363,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
6363 LSLError("First parameter to llDialog needs to be a key"); 6363 LSLError("First parameter to llDialog needs to be a key");
6364 return; 6364 return;
6365 } 6365 }
6366 if (buttons.Length < 1)
6367 {
6368 LSLError("No less than 1 button can be shown");
6369 return;
6370 }
6366 if (buttons.Length > 12) 6371 if (buttons.Length > 12)
6367 { 6372 {
6368 LSLError("No more than 12 buttons can be shown"); 6373 LSLError("No more than 12 buttons can be shown");