Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {

implementation("net.thenextlvl.core:i18n:3.2.0")
implementation("net.thenextlvl.core:files:3.0.0")
implementation("net.thenextlvl.core:paper:2.1.2")
implementation("net.thenextlvl.core:paper:2.2.1")
implementation("org.bstats:bstats-bukkit:3.1.0")
implementation(project(":api"))
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package net.thenextlvl.economist.version;

import core.paper.version.PaperHangarVersionChecker;
import core.paper.version.PaperModrinthVersionChecker;
import core.version.SemanticVersion;
import org.bukkit.plugin.Plugin;
import org.jspecify.annotations.NullMarked;
import org.jspecify.annotations.Nullable;

@NullMarked
public class PluginVersionChecker extends PaperHangarVersionChecker<SemanticVersion> {
public class PluginVersionChecker extends PaperModrinthVersionChecker<SemanticVersion> {
public PluginVersionChecker(Plugin plugin) {
super(plugin, "TheNextLvl", "Economist");
super(plugin, "VQ63EMAa");
}

@Override
Expand Down