3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00
This commit is contained in:
reality 2015-04-25 10:34:34 +00:00
parent 9f685779d5
commit 42952a24e5

View File

@ -126,12 +126,14 @@ var commands = function(dbot) {
if(quiet != 0 || warn != 0 || report != 0) { if(quiet != 0 || warn != 0 || report != 0) {
event.reply(user.primaryNick + ' has been warned ' + warn + ' times, quieted ' + quiet + ' times, and reported ' + report + ' times.'); event.reply(user.primaryNick + ' has been warned ' + warn + ' times, quieted ' + quiet + ' times, and reported ' + report + ' times.');
_.each(_.keys(items).sort(function(a, b) { var sTimes = _.keys(items).sort(function(a, b) {
return moment(a).unix() - moment(b).unix(); return moment(a).unix() - moment(b).unix();
}), function(time) { });
_.each(sTimes, function(time) {
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time]); event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time]);
}); });
event.reply(_.keys(items).join(', ')); event.reply(sTimes.join(', '));
if(latest_ban.time != 0) { if(latest_ban.time != 0) {
if(latest_unban.time == 0 || (latest_unban.time < latest_ban.time)) { if(latest_unban.time == 0 || (latest_unban.time < latest_ban.time)) {