3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00

Merge pull request #55 from SamStudio8/patch-1

Updated server location (again)
This commit is contained in:
Luke Slater 2012-11-29 09:56:51 -08:00
commit b27d7bd99e

View File

@ -140,7 +140,7 @@ var poll = function(dbot) {
'~pdesc': function(event) {
var name = event.input[1];
if(polls.hasOwnProperty(name)) {
event.reply(name + ': ' + polls[name].description + ' - http://nc.no.de:443/polls/' + name);
event.reply(name + ': ' + polls[name].description + ' - http://nourishedcloud.com:8080/polls/' + name);
} else {
event.reply(dbot.t('poll_unexistent', {'name': name}));
}