We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70b292d commit 4458a45Copy full SHA for 4458a45
src/main/java/net/javadiscord/javabot/systems/qotw/QOTWJob.java
@@ -50,10 +50,6 @@ public class QOTWJob {
50
@Scheduled(cron = "0 0 9 * * 1")//MONDAY, 09:00
51
public void execute() throws SQLException {
52
for (Guild guild : jda.getGuilds()) {
53
- if (guild.getBoostTier() == Guild.BoostTier.TIER_1) {
54
- log.error("Guild {} does not have access to private threads. ({})", guild.getName(), guild.getBoostTier().name());
55
- return;
56
- }
57
GuildConfig config = botConfig.get(guild);
58
if (config.getModerationConfig().getLogChannel() == null) continue;
59
try (Connection c = dataSource.getConnection()) {
0 commit comments