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

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 10 Rev 11
Line 220... Line 220...
220 "message", 220 "message",
221 message 221 message
222 ) 222 )
223 ); 223 );
Line -... Line 224...
-   224
224 225 // Check if this is an eggdrop command.
225 if(llGetSubString(data, 0, 0) != 226 if(llGetSubString(data, 0, 0) !=
226 wasKeyValueGet("command", configuration)) 227 wasKeyValueGet("command", configuration))
227 return; 228 return;
-   229
228 230 // Check if the command matches the current module.
229 list command = llParseString2List(data, 231 list command = llParseString2List(data,
230 [wasKeyValueGet("command", configuration), " "], []); 232 [wasKeyValueGet("command", configuration), " "], ["@"]);
231 if(llList2String(command, 0) != "invite") 233 if(llList2String(command, 0) != "invite")
Line 232... Line 234...
232 return; 234 return;
233 235