slowmode update logging

This commit is contained in:
Lee
2024-07-04 11:00:32 +01:00
parent 14ff692b87
commit 21e7ddf549
3 changed files with 34 additions and 5 deletions

View File

@ -507,4 +507,13 @@ public class EventService extends ListenerAdapter {
listener.onChannelUpdateRegion(guild, event);
}
}
@Override
public void onChannelUpdateSlowmode(@NotNull ChannelUpdateSlowmodeEvent event) {
BatGuild guild = guildService.getGuild(event.getGuild().getId());
for (EventListener listener : LISTENERS) {
listener.onChannelUpdateSlowmode(guild, event);
}
}
}