Package org.bukkit.event.entity
Class EntityEnterLoveModeEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityEnterLoveModeEvent
- All Implemented Interfaces:
Cancellable
Called when an entity enters love mode.
This can be cancelled but the item will still be consumed that was used to make the entity enter into love mode.
This can be cancelled but the item will still be consumed that was used to make the entity enter into love mode.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.entity.EntityEvent
entity
-
Constructor Summary
ConstructorDescriptionEntityEnterLoveModeEvent
(@NotNull Animals animalInLove, @Nullable HumanEntity humanEntity, int ticksInLove) -
Method Summary
Modifier and TypeMethodDescriptionGets the animal that is entering love mode.static @NotNull HandlerList
Gets the Human Entity that caused the animal to enter love mode.int
Gets the amount of ticks that the animal will fall in love for.boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
setTicksInLove
(int ticksInLove) Sets the amount of ticks that the animal will fall in love for.Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntityType
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
EntityEnterLoveModeEvent
-
-
Method Details
-
getEntity
Gets the animal that is entering love mode.- Overrides:
getEntity
in classEntityEvent
- Returns:
- The animal that is entering love mode
-
getHumanEntity
Gets the Human Entity that caused the animal to enter love mode.- Returns:
- The Human entity that caused the animal to enter love mode, or null if there wasn't one.
-
getTicksInLove
public int getTicksInLove()Gets the amount of ticks that the animal will fall in love for.- Returns:
- The amount of ticks that the animal will fall in love for
-
setTicksInLove
public void setTicksInLove(int ticksInLove) Sets the amount of ticks that the animal will fall in love for.- Parameters:
ticksInLove
- The amount of ticks that the animal will fall in love for
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
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 interfaceCancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:Cancellable
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 interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-