Skip to content

Commit 4458a45

Browse files
Removed boost-tier check
1 parent 70b292d commit 4458a45

File tree

1 file changed

+0
-4
lines changed
  • src/main/java/net/javadiscord/javabot/systems/qotw

1 file changed

+0
-4
lines changed

src/main/java/net/javadiscord/javabot/systems/qotw/QOTWJob.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ public class QOTWJob {
5050
@Scheduled(cron = "0 0 9 * * 1")//MONDAY, 09:00
5151
public void execute() throws SQLException {
5252
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-
}
5753
GuildConfig config = botConfig.get(guild);
5854
if (config.getModerationConfig().getLogChannel() == null) continue;
5955
try (Connection c = dataSource.getConnection()) {

0 commit comments

Comments
 (0)