Skip to content

Commit a5ccfb9

Browse files
Adjust bump notification timing and message style
Increase the threshold for bump notifications and enhance message formatting.
1 parent 932e7d1 commit a5ccfb9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/modules/core/bump.listener.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)