File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ export class RepModule extends Module {
58
58
59
59
@listener ( { event : 'messageReactionAdd' } )
60
60
async onRepReact ( reaction : MessageReaction , user : User ) {
61
- console . log ( reaction . emoji . id ) ;
62
61
if (
63
62
! reaction . message . guild ||
64
63
user . id === this . client . user ?. id ||
@@ -246,7 +245,6 @@ export class RepModule extends Module {
246
245
) ;
247
246
const [ text , dateMin ] = periods [ period as keyof typeof periods ] ;
248
247
const topEmojis = [ ':first_place:' , ':second_place:' , ':third_place:' ] ;
249
- console . log ( new Date ( dateMin ) . toISOString ( ) ) ;
250
248
const query = Rep . createQueryBuilder ( )
251
249
. where ( `date > '${ new Date ( dateMin ) . toISOString ( ) } '` )
252
250
. select ( [ 'recipient' , 'SUM(amount)' , 'MAX(date)' ] )
You can’t perform that action at this time.
0 commit comments