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
public class EntityEnterLoveModeEvent extends EntityEvent implements 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
-
Field Summary
-
Constructor Summary
Constructors Constructor Description EntityEnterLoveModeEvent(Animals animalInLove, HumanEntity humanEntity, int ticksInLove) -
Method Summary
Modifier and Type Method Description AnimalsgetEntity()Gets the animal that is entering love mode.static HandlerListgetHandlerList()HandlerListgetHandlers()HumanEntitygetHumanEntity()Gets the Human Entity that caused the animal to enter love mode.intgetTicksInLove()Gets the amount of ticks that the animal will fall in love for.booleanisCancelled()Gets the cancellation state of this event.voidsetCancelled(boolean cancel)Sets the cancellation state of this event.voidsetTicksInLove(int ticksInLove)Sets the amount of ticks that the animal will fall in love for.
-
Constructor Details
-
EntityEnterLoveModeEvent
public EntityEnterLoveModeEvent(@NotNull Animals animalInLove, @Nullable HumanEntity humanEntity, int ticksInLove)
-
-
Method Details
-
getEntity
Gets the animal that is entering love mode.- Overrides:
getEntityin 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:CancellableGets 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:
isCancelledin interfaceCancellable- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel)Description copied from interface:CancellableSets 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:
setCancelledin interfaceCancellable- Parameters:
cancel- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlersin classEvent
-
getHandlerList
-