3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00

qadd reality ban

This commit is contained in:
Luke Slater 2011-10-12 16:51:34 +01:00
parent a450d357d1
commit b40845e93d

View File

@ -4,7 +4,7 @@ var js = function(dbot) {
var commands = {
'~js': function(data, params) {
var q = data.message.valMatch(/^~js ([\d\w\s]*)/, 2);
console.log(q);
console.log(q[1]);
dbot.say(data.channel, eval(q[1]));
}
};