forked from GitHub/dbot
sustatus thing
This commit is contained in:
parent
e52699b211
commit
431266136c
@ -141,25 +141,24 @@ var commands = function(dbot) {
|
||||
event.reply('[reports]');
|
||||
_.each(sTimes, function(time) {
|
||||
if(items[time].type == 'report') {
|
||||
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time]);
|
||||
}
|
||||
});
|
||||
event.reply('[quiets]');
|
||||
_.each(sTimes, function(time) {
|
||||
if(items[time].type == 'quiet') {
|
||||
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time]);
|
||||
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
|
||||
}
|
||||
});
|
||||
event.reply('[warns]');
|
||||
_.each(sTimes, function(time) {
|
||||
if(items[time].type == 'warn') {
|
||||
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time]);
|
||||
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
|
||||
}
|
||||
});
|
||||
event.reply('[bans]');
|
||||
_.each(sTimes, function(time) {
|
||||
if(items[time].type == 'ban' || items[time].type == 'unban') {
|
||||
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time]);
|
||||
event.reply('[' + moment(parseInt(time)).format('DD/MM/YYYY') + '] ' + items[time].message);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user