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

Subversion Repositories:
Rev:
Show entire fileIgnore 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")
234 return; 234 return;
235 235
236 // Remove command. 236 // Remove command.
Line 237... Line 237...
237 command = llDeleteSubList(command, 0, 0); 237 command = llDeleteSubList(command, 0, 0);
238 238