mirror of
https://github.com/Xiao-MoMi/Custom-Fishing.git
synced 2025-12-19 15:09:24 +00:00
bump shadow version
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("io.github.goooler.shadow") version "8.1.7"
|
id("io.github.goooler.shadow") version "8.1.8"
|
||||||
id("maven-publish")
|
id("maven-publish")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
package net.momirealms.customfishing.bukkit.integration.quest;
|
package net.momirealms.customfishing.bukkit.integration.quest;
|
||||||
|
|
||||||
|
import net.momirealms.customfishing.api.BukkitCustomFishingPlugin;
|
||||||
import net.momirealms.customfishing.api.event.FishingResultEvent;
|
import net.momirealms.customfishing.api.event.FishingResultEvent;
|
||||||
import org.betonquest.betonquest.BetonQuest;
|
import org.betonquest.betonquest.BetonQuest;
|
||||||
import org.betonquest.betonquest.Instruction;
|
import org.betonquest.betonquest.Instruction;
|
||||||
@@ -41,8 +42,19 @@ import java.util.HashSet;
|
|||||||
public class BetonQuestQuest {
|
public class BetonQuestQuest {
|
||||||
|
|
||||||
public static void register() {
|
public static void register() {
|
||||||
BetonQuest.getInstance().registerObjectives("customfishing_loot", IDObjective.class);
|
BetonQuest ins1 = BetonQuest.getInstance();
|
||||||
BetonQuest.getInstance().registerObjectives("customfishing_group", GroupObjective.class);
|
if (ins1 != null) {
|
||||||
|
ins1.registerObjectives("customfishing_loot", IDObjective.class);
|
||||||
|
ins1.registerObjectives("customfishing_group", GroupObjective.class);
|
||||||
|
} else {
|
||||||
|
Bukkit.getScheduler().runTaskLater(BukkitCustomFishingPlugin.getInstance().getBoostrap(), () -> {
|
||||||
|
BetonQuest ins2 = BetonQuest.getInstance();
|
||||||
|
if (ins2 != null) {
|
||||||
|
ins2.registerObjectives("customfishing_loot", IDObjective.class);
|
||||||
|
ins2.registerObjectives("customfishing_group", GroupObjective.class);
|
||||||
|
}
|
||||||
|
}, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class IDObjective extends CountingObjective implements Listener {
|
public static class IDObjective extends CountingObjective implements Listener {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
val commitID: String by project
|
val commitID: String by project
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("io.github.goooler.shadow") version "8.1.7"
|
id("io.github.goooler.shadow") version "8.1.8"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
|||||||
Reference in New Issue
Block a user