3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00
This commit is contained in:
Luke Slater 2011-10-12 16:45:43 +01:00
parent 7e78402c01
commit e0fdebe6df

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);
dbot.say(data.channel, eval(q));
dbot.say(data.channel, eval(q[1]));
}
};