m is not n

This commit is contained in:
reality 2015-04-02 18:46:42 +00:00
parent 300a6c51a1
commit 65d752484f

View File

@ -49,13 +49,13 @@ var commands = function(dbot){
if(tz) { if(tz) {
event.reply('The time for ' + event.params[1] + ' in ' + tz + ' is ' + moment().tz(tz).format('HH:mm:ss on DD/MM/YYYY')); event.reply('The time for ' + event.params[1] + ' in ' + tz + ' is ' + moment().tz(tz).format('HH:mm:ss on DD/MM/YYYY'));
} else { } else {
event.reply(user.currentNick + ' needs to set a timezone with ~timezone'); event.reply(user.currentNick + ' needs to set a timezone with "~set timezone x"');
} }
} else { } else {
if(!user) { if(!user) {
event.reply('No idea who that is mate'); event.reply('No idea who that is mate');
} else { } else {
event.reply(user.currentNick + ' needs to set a timezone with ~timezone'); event.reply(user.currentNick + ' needs to set a timezone with "~set timezone x"');
} }
} }
}); });