File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,17 +78,17 @@ export async function handleBumpStreak(
7878 if ( mostRecent . userId !== bumper . id && mostRecent . current > 2 ) {
7979 const user = await client . users . fetch ( mostRecent . userId . toString ( ) ) ;
8080 message . channel . send (
81- `${ mentionIfPingable ( interactionOld . user ) } ended ${ fakeMention ( user ) } 's bump streak of ${ mostRecent . current } !` ,
81+ `☠️ ${ mentionIfPingable ( interactionOld . user ) } ended ${ fakeMention ( user ) } 's bump streak of ${ mostRecent . current } !` ,
8282 ) ;
8383 }
8484 }
8585
8686 // time since last bump
8787 if ( lastBumpNotificationTime . getTime ( ) !== 0 ) {
8888 const timeSinceLastBump = Date . now ( ) - lastBumpNotificationTime . getTime ( ) ;
89- if ( timeSinceLastBump < 5000 ) {
89+ if ( timeSinceLastBump < 8000 ) {
9090 message . channel . send (
91- `⚡ ${ fakeMention ( interactionOld . user ) } bumped in just **${ timeSinceLastBump / 1000 } s**!` ,
91+ `⚡⚡⚡ ${ fakeMention ( interactionOld . user ) } bumped in just **${ timeSinceLastBump / 1000 } s**!` ,
9292 ) ;
9393 } else {
9494 logger . debug (
You can’t perform that action at this time.
0 commit comments