-
Notifications
You must be signed in to change notification settings - Fork 550
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
Showing
2 changed files
with
96 additions
and
5 deletions.
There are no files selected for viewing
84 changes: 84 additions & 0 deletions
84
src/main/java/io/github/thebusybiscuit/slimefun4/api/events/TalismanActivatedEvent.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,84 @@ | ||
package io.github.thebusybiscuit.slimefun4.api.events; | ||
|
||
import javax.annotation.Nonnull; | ||
import javax.annotation.ParametersAreNonnullByDefault; | ||
|
||
import org.bukkit.entity.Player; | ||
import org.bukkit.event.Cancellable; | ||
import org.bukkit.event.HandlerList; | ||
import org.bukkit.event.player.PlayerEvent; | ||
import org.bukkit.inventory.ItemStack; | ||
|
||
import io.github.thebusybiscuit.slimefun4.implementation.items.magical.talismans.Talisman; | ||
|
||
/** | ||
* | ||
* This {@link PlayerEvent} is called when a {@link Player} activates a {@link Talisman} | ||
* | ||
* @author cworldstar | ||
* | ||
*/ | ||
|
||
public class TalismanActivatedEvent extends PlayerEvent implements Cancellable { | ||
|
||
private static HandlerList Handlers = new HandlerList(); | ||
private Talisman talisman; | ||
private ItemStack talismanItemStack; | ||
private boolean cancelled = false; | ||
|
||
|
||
/** | ||
* | ||
* @param player | ||
* The {@link Player} who activated the talisman. | ||
* | ||
* @param talisman | ||
* The {@link Talisman} that was activated. | ||
* | ||
* @param talismanItem | ||
* The {@link ItemStack} corresponding to the Talisman. | ||
*/ | ||
@ParametersAreNonnullByDefault | ||
public TalismanActivatedEvent(Player player, Talisman talisman, ItemStack talismanItem) { | ||
super(player); | ||
this.talisman = talisman; | ||
this.talismanItemStack = talismanItem; | ||
} | ||
/** | ||
* | ||
* @return The {@link Talisman} used. | ||
* | ||
*/ | ||
@Nonnull | ||
public Talisman getTalisman() { | ||
return this.talisman; | ||
} | ||
/** | ||
* | ||
* @return The {@link ItemStack} of the used {@link Talisman}. | ||
*/ | ||
@Nonnull | ||
public ItemStack getTalismanItem() { | ||
return this.talismanItemStack; | ||
} | ||
|
||
public static HandlerList getHandlerList() { | ||
return Handlers; | ||
} | ||
|
||
@Override | ||
public HandlerList getHandlers() { | ||
return getHandlerList(); | ||
} | ||
@Override | ||
public boolean isCancelled() { | ||
return this.cancelled; | ||
} | ||
@Override | ||
public void setCancelled(boolean cancel) { | ||
this.cancelled = cancel; | ||
} | ||
|
||
|
||
|
||
} |
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