78 lines
2.1 KiB
Diff
78 lines
2.1 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: KyGuy2002 <IEatBeans#1165>
|
||
|
Date: Fri, 11 Mar 2022 15:33:10 +0000
|
||
|
Subject: [PATCH] Added EntityToggleSitEvent
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/io/papermc/paper/event/entity/EntityToggleSitEvent.java b/src/main/java/io/papermc/paper/event/entity/EntityToggleSitEvent.java
|
||
|
new file mode 100644
|
||
|
index 0000000000000000000000000000000000000000..982dad1bae89e52d29343101c424797e00a2b229
|
||
|
--- /dev/null
|
||
|
+++ b/src/main/java/io/papermc/paper/event/entity/EntityToggleSitEvent.java
|
||
|
@@ -0,0 +1,65 @@
|
||
|
+package io.papermc.paper.event.entity;
|
||
|
+
|
||
|
+import org.bukkit.entity.Entity;
|
||
|
+import org.bukkit.event.Cancellable;
|
||
|
+import org.bukkit.event.HandlerList;
|
||
|
+import org.bukkit.event.entity.EntityEvent;
|
||
|
+import org.jetbrains.annotations.NotNull;
|
||
|
+
|
||
|
+/**
|
||
|
+ * Is called when an entity sits down or stands up.
|
||
|
+ */
|
||
|
+public class EntityToggleSitEvent extends EntityEvent implements Cancellable {
|
||
|
+
|
||
|
+ private static final HandlerList HANDLER_LIST = new HandlerList();
|
||
|
+
|
||
|
+ private boolean cancelled;
|
||
|
+ private final Entity entity;
|
||
|
+ private final boolean isSitting;
|
||
|
+
|
||
|
+ public EntityToggleSitEvent(@NotNull Entity entity, boolean isSitting) {
|
||
|
+ super(entity);
|
||
|
+ this.entity = entity;
|
||
|
+ this.isSitting = isSitting;
|
||
|
+ }
|
||
|
+
|
||
|
+ /**
|
||
|
+ * The entity involved.
|
||
|
+ *
|
||
|
+ * @return The entity.
|
||
|
+ */
|
||
|
+ @NotNull
|
||
|
+ public Entity getEntity() {
|
||
|
+ return this.entity;
|
||
|
+ }
|
||
|
+
|
||
|
+ /**
|
||
|
+ * Gets the new sitting state that the entity will change to.
|
||
|
+ *
|
||
|
+ * @return If it's going to sit or not.
|
||
|
+ */
|
||
|
+ public boolean getSittingState() {
|
||
|
+ return this.isSitting;
|
||
|
+ }
|
||
|
+
|
||
|
+ @Override
|
||
|
+ public boolean isCancelled() {
|
||
|
+ return this.cancelled;
|
||
|
+ }
|
||
|
+
|
||
|
+ @Override
|
||
|
+ public void setCancelled(boolean cancel) {
|
||
|
+ this.cancelled = cancel;
|
||
|
+ }
|
||
|
+
|
||
|
+ @NotNull
|
||
|
+ @Override
|
||
|
+ public HandlerList getHandlers() {
|
||
|
+ return HANDLER_LIST;
|
||
|
+ }
|
||
|
+
|
||
|
+ @NotNull
|
||
|
+ public static HandlerList getHandlerList() {
|
||
|
+ return HANDLER_LIST;
|
||
|
+ }
|
||
|
+}
|