Skip to content

Commit 26486c2

Browse files
committed
fix(eventNotifier): Event Notifier sending /gc at the start of the message
1 parent c022ac6 commit 26486c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/minecraft/other/eventNotifier.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ if (config.minecraft.skyblockEventsNotifications.enabled) {
3838

3939
const cTime = getCustomTime(customTime, event);
4040
if (cTime.length !== 0 && cTime.includes(minutes.toString())) {
41-
eventBOT.send(`/gc [EVENT] ${eventData.name}${extraInfo}: Starting in ${minutes}m!`);
41+
eventBOT.send(`[EVENT] ${eventData.name}${extraInfo}: Starting in ${minutes}m!`);
4242
await delay(1500);
4343
}
4444

4545
if (minutes == 0) {
46-
eventBOT.send(`/gc [EVENT] ${eventData.name}${extraInfo}: Starting now!`);
46+
eventBOT.send(`[EVENT] ${eventData.name}${extraInfo}: Starting now!`);
4747
await delay(1500);
4848
}
4949
}

0 commit comments

Comments
 (0)