Make an invalud key string in llTextBox and llDialog non fatal to avoid
breakinf sloppily made no-mod scripted items.avinationmerge
parent
54d1d6d917
commit
506192e466
|
@ -4469,7 +4469,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
|||
UUID av = new UUID();
|
||||
if (!UUID.TryParse(agent,out av))
|
||||
{
|
||||
LSLError("First parameter to llDialog needs to be a key");
|
||||
//LSLError("First parameter to llDialog needs to be a key");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -6731,7 +6731,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
|||
UUID av = new UUID();
|
||||
if (!UUID.TryParse(avatar,out av))
|
||||
{
|
||||
LSLError("First parameter to llDialog needs to be a key");
|
||||
//LSLError("First parameter to llDialog needs to be a key");
|
||||
return;
|
||||
}
|
||||
if (buttons.Length < 1)
|
||||
|
|
Loading…
Reference in New Issue