9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2026-01-04 15:41:35 +00:00
This commit is contained in:
XiaoMoMi
2024-04-03 20:32:58 +08:00
parent c24dc44bf3
commit 0f7612ae98
5 changed files with 12 additions and 17 deletions

View File

@@ -88,9 +88,9 @@ public interface LootManager {
/**
* Get the next loot item based on fishing effect and condition.
*
* @param initialEffect The effect to apply weight modifiers.
* @param effect The effect to apply weight modifiers.
* @param condition The condition to determine possible loot.
* @return The next loot item, or null if it doesn't exist.
*/
@Nullable Loot getNextLoot(Effect initialEffect, Condition condition);
@Nullable Loot getNextLoot(Effect effect, Condition condition);
}