Repair lsGetWindlightScene, the constant was added to the list as a uint, which is bad - convert to LSL_Integer first.

avinationmerge
meta7 2010-08-07 16:18:44 -07:00
parent cabbd187e7
commit a6048518b7
1 changed files with 507 additions and 507 deletions

View File

@ -250,7 +250,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if (toadd.Length > 0)
{
values.Add(rule);
values.Add(new LSL_Integer(rule));
values.Add(toadd.Data[0]);
}
idx++;