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

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