Skip to content

Commit

Permalink
Update CustomFishing dependency
Browse files Browse the repository at this point in the history
Add isPrimaryThread method for LMBishop#760 debugging
  • Loading branch information
Krakenied committed Feb 1, 2025
1 parent d2293d7 commit 1866150
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions bukkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ repositories {
maven("https://libraries.minecraft.net/")
// CoreProtect
maven("https://maven.playpro.com/")
// CustomFishing
maven("https://repo.momirealms.net/releases/")
// EcoBosses, EcoMobs
maven("https://repo.auxilor.io/repository/maven-public/")
// EssentialsX
Expand All @@ -37,7 +39,7 @@ repositories {
maven("https://repo.oraxen.com/releases")
// PlaceholderAPI
maven("https://repo.extendedclip.com/releases")
// CustomFishing, ItemsAdder, SCore, ShopGUIPlus, Slimefun4, Vault
// ItemsAdder, SCore, ShopGUIPlus, Slimefun4, Vault
maven("https://jitpack.io/")
// PlayerPoints
maven("https://repo.rosewooddev.io/repository/public/")
Expand Down Expand Up @@ -75,7 +77,7 @@ dependencies {
// CoreProtect
compileOnlyPlugin("net.coreprotect:coreprotect:21.2")
// CustomFishing
compileOnlyPlugin("com.github.Xiao-MoMi:Custom-Fishing:2.2.20")
compileOnlyPlugin("net.momirealms:custom-fishing:2.3.4")
// EcoBosses, EcoMobs
compileOnlyPlugin("com.willfp:EcoBosses:9.14.0")
compileOnlyPlugin("com.willfp:EcoMobs:10.0.0-b1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -968,4 +968,9 @@ public LogHistory getLogHistory() {
public void reloadConfig() {
this.reloadBaseConfiguration(false);
}

@Override
public boolean isPrimaryThread() {
return Bukkit.isPrimaryThread();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public QuestProgress(final @NotNull QuestProgress questProgress) {

/**
* @return mutable task progress map values collection
* @see QuestProgress#getTaskProgress()
* @see QuestProgress#getAllTaskProgress()
*/
@Deprecated(forRemoval = true)
@Contract(pure = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,5 @@ public interface Quests {
*/
void reloadQuests();

boolean isPrimaryThread();
}

0 comments on commit 1866150

Please sign in to comment.