Skip to content

Commit

Permalink
feat: change BlobBuildUpdater in Supreme.java
Browse files Browse the repository at this point in the history
  • Loading branch information
RelativoBR authored Feb 22, 2024
1 parent f2651ba commit 77c96f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/github/relativobr/supreme/Supreme.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import com.github.relativobr.supreme.util.SupremePowerSection;
import io.github.thebusybiscuit.slimefun4.api.SlimefunAddon;
import io.github.thebusybiscuit.slimefun4.libraries.dough.config.Config;
import io.github.thebusybiscuit.slimefun4.libraries.dough.updater.GitHubBuildsUpdater;
import io.github.thebusybiscuit.slimefun4.libraries.dough.updater.BlobBuildUpdater;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
Expand Down Expand Up @@ -151,7 +151,7 @@ public void onEnable() {
&& getDescription().getVersion()
.startsWith("DEV - ")) {
Supreme.inst().log(Level.INFO, "Auto Update: enable");
new GitHubBuildsUpdater(this, getFile(), "RelativoBR/Supreme/main").start();
new BlobBuildUpdater(this, getFile(), "Supreme", "Dev").start();
} else {
Supreme.inst().log(Level.INFO, "Auto Update: disable");
}
Expand Down

0 comments on commit 77c96f3

Please sign in to comment.