diff options
| author | Krakenied <krakenied1@gmail.com> | 2025-02-01 15:26:57 +0100 |
|---|---|---|
| committer | Krakenied <46192742+Krakenied@users.noreply.github.com> | 2025-05-13 20:34:15 +0200 |
| commit | 6dd53a342c9c1794bbbf40b317678b4fe4179454 (patch) | |
| tree | 95e2f5f9c8b5b5e2790826f7fd462732a8e02972 /common/src/main/java | |
| parent | ce81722883702ae379b2e88e5909195619633831 (diff) | |
Update CustomFishing dependency
Add isPrimaryThread method for https://github.com/LMBishop/Quests/issues/760 debugging
Diffstat (limited to 'common/src/main/java')
| -rw-r--r-- | common/src/main/java/com/leonardobishop/quests/common/player/questprogressfile/QuestProgress.java | 2 | ||||
| -rw-r--r-- | common/src/main/java/com/leonardobishop/quests/common/plugin/Quests.java | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/common/src/main/java/com/leonardobishop/quests/common/player/questprogressfile/QuestProgress.java b/common/src/main/java/com/leonardobishop/quests/common/player/questprogressfile/QuestProgress.java index d8506b83..addc8a76 100644 --- a/common/src/main/java/com/leonardobishop/quests/common/player/questprogressfile/QuestProgress.java +++ b/common/src/main/java/com/leonardobishop/quests/common/player/questprogressfile/QuestProgress.java @@ -130,7 +130,7 @@ public final class QuestProgress { /** * @return mutable task progress map values collection - * @see QuestProgress#getTaskProgress() + * @see QuestProgress#getAllTaskProgress() */ @Deprecated(forRemoval = true) @Contract(pure = true) diff --git a/common/src/main/java/com/leonardobishop/quests/common/plugin/Quests.java b/common/src/main/java/com/leonardobishop/quests/common/plugin/Quests.java index 862d9b95..23533210 100644 --- a/common/src/main/java/com/leonardobishop/quests/common/plugin/Quests.java +++ b/common/src/main/java/com/leonardobishop/quests/common/plugin/Quests.java @@ -99,4 +99,5 @@ public interface Quests { */ void reloadQuests(); + boolean isPrimaryThread(); } |
