Fix an omission in LSL that causes a viewer crash
parent
a08360e3cd
commit
8f0d6d6b5c
|
@ -6363,6 +6363,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
LSLError("First parameter to llDialog needs to be a key");
|
LSLError("First parameter to llDialog needs to be a key");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (buttons.Length < 1)
|
||||||
|
{
|
||||||
|
LSLError("No less than 1 button can be shown");
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (buttons.Length > 12)
|
if (buttons.Length > 12)
|
||||||
{
|
{
|
||||||
LSLError("No more than 12 buttons can be shown");
|
LSLError("No more than 12 buttons can be shown");
|
||||||
|
|
Loading…
Reference in New Issue