minor: Add comment as to why we are pulcking plain old ints out of the LSL_List when converting values from LSL for modInvoke()

integration
Justin Clark-Casey (justincc) 2012-10-26 01:50:46 +01:00
parent ecdb88679e
commit 1b3b7a61ac
1 changed files with 2 additions and 0 deletions

View File

@ -359,6 +359,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
result[i] = (string)(LSL_String)plist[i];
else if (plist[i] is LSL_Integer)
result[i] = (int)(LSL_Integer)plist[i];
// The int check exists because of the many plain old int script constants in ScriptBase which
// are not LSL_Integers.
else if (plist[i] is int)
result[i] = plist[i];
else if (plist[i] is LSL_Float)