mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
#1094: Add method to get rewarded players from vaults
This commit is contained in:
parent
09a64a60ff
commit
24fbb46243
1 changed files with 11 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
package org.bukkit.block;
|
package org.bukkit.block;
|
||||||
|
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.UUID;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.loot.LootTable;
|
import org.bukkit.loot.LootTable;
|
||||||
import org.jetbrains.annotations.ApiStatus;
|
import org.jetbrains.annotations.ApiStatus;
|
||||||
|
@ -96,4 +98,13 @@ public interface Vault extends TileState {
|
||||||
* @param keyItem the key item
|
* @param keyItem the key item
|
||||||
*/
|
*/
|
||||||
void setKeyItem(@NotNull ItemStack keyItem);
|
void setKeyItem(@NotNull ItemStack keyItem);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the players who have already received rewards from this vault.
|
||||||
|
*
|
||||||
|
* @return unmodifiable set of player UUIDs
|
||||||
|
* @throws IllegalStateException if this block state is not placed
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
Set<UUID> getRewardedPlayers();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue