corrade-lsl-templates – Diff between revs 11 and 15

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 11 Rev 15
Line 392... Line 392...
392 if(llGetSubString(data, 0, 0) != 392 if(llGetSubString(data, 0, 0) !=
393 wasKeyValueGet("command", configuration)) 393 wasKeyValueGet("command", configuration))
394 return; 394 return;
Line 395... Line 395...
395 395
396 // Check if the command matches the current module. 396 // Check if the command matches the current module.
397 list command = llParseString2List(data, 397 list command = llParseString2List(data, [" "], []);
398 [wasKeyValueGet("command", configuration), " "], ["@"]); 398 if(llList2String(command, 0) !=
399 if(llList2String(command, 0) != "eval") 399 wasKeyValueGet("command", configuration) + "eval")
400 return; 400 return;
401 401
402 // Remove command. 402 // Remove command.
Line 403... Line 403...
403 command = llDeleteSubList(command, 0, 0); 403 command = llDeleteSubList(command, 0, 0);
404 404