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

Subversion Repositories:
Rev:
Show entire fileRegard whitespace
Rev 11 Rev 15
Line 226... Line 226...
226 if(llGetSubString(data, 0, 0) != 226 if(llGetSubString(data, 0, 0) !=
227 wasKeyValueGet("command", configuration)) 227 wasKeyValueGet("command", configuration))
228 return; 228 return;
Line 229... Line 229...
229 229
230 // Check if the command matches the current module. 230 // Check if the command matches the current module.
231 list command = llParseString2List(data, 231 list command = llParseString2List(data, [" "], []);
232 [wasKeyValueGet("command", configuration), " "], ["@"]); 232 if(llList2String(command, 0) !=
233 if(llList2String(command, 0) != "invite") 233 wasKeyValueGet("command", configuration) + "invite")
Line 234... Line 234...
234 return; 234 return;
235 235