fix/alarmpingqueue handler type / thanks Perrelos

This commit is contained in:
SowinskiBraeden committed 2024-01-11 12:10:44 -08:00
1 parent 65534ea96e
commit 0823f7bf7c
2 files changed
+2 -2

No files matched your search

+1 -1
View File
@@ -184,7 +184,7 @@ class DayzRBot extends Client {
// Handle alarm pings
const maxEmbed = 10;
for (const [channel_id, data] of Object.entrries(this.alarmPingQueue)) {
for (const [channel_id, data] of Object.entries(this.alarmPingQueue)) {
const channel = this.GetChannel(channel_id);
if (!channel) continue;
for (const [role, embeds] of Object.entries(data)) {