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

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 10 Rev 11
Line 386... Line 386...
386 "message", 386 "message",
387 message 387 message
388 ) 388 )
389 ); 389 );
Line -... Line 390...
-   390
390 391 // Check if this is an eggdrop command.
391 if(llGetSubString(data, 0, 0) != 392 if(llGetSubString(data, 0, 0) !=
392 wasKeyValueGet("command", configuration)) 393 wasKeyValueGet("command", configuration))
393 return; 394 return;
-   395
394 396 // Check if the command matches the current module.
395 list command = llParseString2List(data, 397 list command = llParseString2List(data,
396 [wasKeyValueGet("command", configuration), " "], []); 398 [wasKeyValueGet("command", configuration), " "], ["@"]);
397 if(llList2String(command, 0) != "eval") 399 if(llList2String(command, 0) != "eval")
Line 398... Line 400...
398 return; 400 return;
399 401