Skip to content

Commit f2a494e

Browse files
author
KiriCattus
committed
Add quilt automatic announcements.
1 parent 536ec22 commit f2a494e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/commander/java/com/mcmoddev/mmdbot/commander/updatenotifiers/UpdateNotifiers.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
import com.mcmoddev.mmdbot.commander.updatenotifiers.fabric.FabricApiUpdateNotifier;
2424
import com.mcmoddev.mmdbot.commander.updatenotifiers.forge.ForgeUpdateNotifier;
2525
import com.mcmoddev.mmdbot.commander.updatenotifiers.minecraft.MinecraftUpdateNotifier;
26+
import com.mcmoddev.mmdbot.commander.updatenotifiers.quilt.QuiltUpdateNotifier;
2627
import com.mcmoddev.mmdbot.core.event.Events;
2728
import com.mcmoddev.mmdbot.core.util.TaskScheduler;
2829
import lombok.extern.slf4j.Slf4j;
@@ -68,6 +69,7 @@ public static void register() {
6869
log.error("Debugging: Checking for Minecraft and Fabric updates every 15 min...");
6970
event.addTask(new TaskScheduler.Task(new MinecraftUpdateNotifier(), 0, 15, TimeUnit.MINUTES));
7071
event.addTask(new TaskScheduler.Task(new FabricApiUpdateNotifier(), 0, 15, TimeUnit.MINUTES));
72+
event.addTask(new TaskScheduler.Task(new QuiltUpdateNotifier(), 0, 15, TimeUnit.MINUTES));
7173
});
7274
}
7375
}

0 commit comments

Comments
 (0)