mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 22:39:26 +01:00
pdesc and output change
This commit is contained in:
parent
8ce80a1d94
commit
52984d9b41
@ -27,7 +27,8 @@ var poll = function(dbot) {
|
|||||||
polls[name]['votes'][options[i]] = 0;
|
polls[name]['votes'][options[i]] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
event.reply(dbot.t('poll_created', {'name': name, 'description': description}));
|
event.reply(dbot.t('poll_created', {'name': name, 'description': description}) +
|
||||||
|
' - http://nc.no.de:443/polls/' + name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -59,10 +60,10 @@ var poll = function(dbot) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
'~viewpoll': function(event) {
|
'~pdesc': function(event) {
|
||||||
var name = event.input[1];
|
var name = event.input[1];
|
||||||
if(polls.hasOwnProperty(name)) {
|
if(polls.hasOwnProperty(name)) {
|
||||||
|
event.reply(name + ': ' + polls[name].description + ' - http://nc.no.de:443/polls/' + name);
|
||||||
} else {
|
} else {
|
||||||
event.reply(dbot.t('poll_unexistent', {'name': name}));
|
event.reply(dbot.t('poll_unexistent', {'name': name}));
|
||||||
}
|
}
|
||||||
@ -70,7 +71,7 @@ var poll = function(dbot) {
|
|||||||
};
|
};
|
||||||
commands['~newpoll'].regex = [/~newpoll ([^ ]+) \[options=([^ ]+)\] (.+)/, 4];
|
commands['~newpoll'].regex = [/~newpoll ([^ ]+) \[options=([^ ]+)\] (.+)/, 4];
|
||||||
commands['~vote'].regex = [/~vote ([^ ]+) ([^ ]+)/, 3];
|
commands['~vote'].regex = [/~vote ([^ ]+) ([^ ]+)/, 3];
|
||||||
commands['~viewpoll'].regex = [/~viewpoll ([^ ]+)/, 2];
|
commands['~pdesc'].regex = [/~pdesc ([^ ]+)/, 2];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'name': 'poll',
|
'name': 'poll',
|
||||||
|
Loading…
Reference in New Issue
Block a user