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

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