Package dev.lone.itemsadder.api.Events
Class FurniturePrePlaceEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
dev.lone.itemsadder.api.Events.FurniturePrePlaceEvent
- All Implemented Interfaces:
org.bukkit.event.Cancellable
public class FurniturePrePlaceEvent
extends org.bukkit.event.player.PlayerEvent
implements org.bukkit.event.Cancellable
Called before placing, to avoid useless processing.
Exposes the `namespacedId` and `location` of the entity for checking.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
org.bukkit.event.Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.player.PlayerEvent
player
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull org.bukkit.event.HandlerList
@NotNull org.bukkit.event.HandlerList
org.bukkit.Location
Gets the location where the entity would be placed.@Nullable String
Gets the namespaced ID of the item that the player is trying to place.boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancelled) Sets the cancellation state of this event.Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
Methods inherited from class org.bukkit.event.Event
getEventName, isAsynchronous
-
Constructor Details
-
FurniturePrePlaceEvent
public FurniturePrePlaceEvent(@NotNull @NotNull org.bukkit.entity.Player who)
-
-
Method Details
-
isCancelled
public boolean isCancelled()Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelled
in interfaceorg.bukkit.event.Cancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancelled) Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
setCancelled
in interfaceorg.bukkit.event.Cancellable
- Parameters:
cancelled
- true if you wish to cancel this event
-
getNamespacedID
Gets the namespaced ID of the item that the player is trying to place.- Returns:
- Namespaced ID of the item.
-
getLocation
public org.bukkit.Location getLocation()Gets the location where the entity would be placed.- Returns:
- Location where the entity would be placed.
-
getHandlers
@NotNull public @NotNull org.bukkit.event.HandlerList getHandlers()- Specified by:
getHandlers
in classorg.bukkit.event.Event
-
getHandlerList
@NotNull public static @NotNull org.bukkit.event.HandlerList getHandlerList()
-