-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dafcb95
commit fdc17e2
Showing
5 changed files
with
75 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
- Added JEI and EMI support for clicking on items in the UI (ThatGravyBoat) | ||
- Fix NPE if quest was trying to be reset while never being progressed (ThatGravyBoat) | ||
- Added dependency propagation visibility option (ThatGravyBoat) | ||
- Optimize client quest entry propagation (MsRandom) | ||
- Added loot condition "heracles:completed_quest" for loot tables (ThatGravyBoat) | ||
- Fixed stats task performance in situations where there were many players online (ThatGravyBoat) |
10 changes: 10 additions & 0 deletions
10
common/src/main/java/earth/terrarium/heracles/api/tasks/CacheableQuestTaskType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package earth.terrarium.heracles.api.tasks; | ||
|
||
import earth.terrarium.heracles.api.quests.Quest; | ||
|
||
import java.util.Collection; | ||
|
||
public interface CacheableQuestTaskType<T extends QuestTask<?, ?, T>, C> extends QuestTaskType<T> { | ||
|
||
C cache(Collection<Quest> quests); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters