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

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 11 Rev 15
Line 363... Line 363...
363 if(llGetSubString(data, 0, 0) != 363 if(llGetSubString(data, 0, 0) !=
364 wasKeyValueGet("command", configuration)) 364 wasKeyValueGet("command", configuration))
365 return; 365 return;
Line 366... Line 366...
366 366
367 // Check if the command matches the current module. 367 // Check if the command matches the current module.
368 list command = llParseString2List(data, 368 list command = llParseString2List(data, [" "], []);
369 [wasKeyValueGet("command", configuration), " "], ["@"]); 369 if(llList2String(command, 0) !=
370 if(llList2String(command, 0) != "motd") 370 wasKeyValueGet("command", configuration) + "motd")
Line 371... Line 371...
371 return; 371 return;
372 372