2019-03-20 01:28:15 +01:00
|
|
|
From 456f51c1047c446b824766799d6883ab066ee8bb Mon Sep 17 00:00:00 2001
|
2018-05-17 02:49:47 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 16 May 2018 20:39:09 -0400
|
|
|
|
Subject: [PATCH] WitchThrowPotionEvent
|
|
|
|
|
|
|
|
Fired when a witch throws a potion at a player
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/event/entity/WitchThrowPotionEvent.java b/src/main/java/com/destroystokyo/paper/event/entity/WitchThrowPotionEvent.java
|
2019-03-20 01:28:15 +01:00
|
|
|
index 6ef6367b6..688a596aa 100644
|
2018-05-17 02:49:47 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/event/entity/WitchThrowPotionEvent.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/event/entity/WitchThrowPotionEvent.java
|
2019-03-20 01:28:15 +01:00
|
|
|
@@ -1,29 +1,77 @@
|
2018-05-17 02:49:47 +02:00
|
|
|
package com.destroystokyo.paper.event.entity;
|
|
|
|
|
2018-05-24 05:08:04 +02:00
|
|
|
+import org.bukkit.entity.LivingEntity;
|
2018-05-17 02:49:47 +02:00
|
|
|
+import org.bukkit.entity.Witch;
|
|
|
|
import org.bukkit.event.Cancellable;
|
|
|
|
-import org.bukkit.event.Event;
|
|
|
|
import org.bukkit.event.HandlerList;
|
|
|
|
+import org.bukkit.event.entity.EntityEvent;
|
|
|
|
+import org.bukkit.inventory.ItemStack;
|
2019-03-20 01:28:15 +01:00
|
|
|
+import org.jetbrains.annotations.NotNull;
|
|
|
|
+import org.jetbrains.annotations.Nullable;
|
2018-05-17 02:49:47 +02:00
|
|
|
|
|
|
|
-public class WitchThrowPotionEvent extends Event implements Cancellable {
|
|
|
|
- public WitchThrowPotionEvent() {
|
|
|
|
+/**
|
|
|
|
+ * Fired when a witch throws a potion at a player
|
|
|
|
+ */
|
|
|
|
+public class WitchThrowPotionEvent extends EntityEvent implements Cancellable {
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull private final LivingEntity target;
|
|
|
|
+ @Nullable private ItemStack potion;
|
2018-05-17 02:49:47 +02:00
|
|
|
+
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public WitchThrowPotionEvent(@NotNull Witch witch, @NotNull LivingEntity target, @Nullable ItemStack potion) {
|
2018-05-17 02:49:47 +02:00
|
|
|
+ super(witch);
|
|
|
|
+ this.target = target;
|
|
|
|
+ this.potion = potion;
|
|
|
|
}
|
|
|
|
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-05-17 02:49:47 +02:00
|
|
|
+ @Override
|
|
|
|
+ public Witch getEntity() {
|
|
|
|
+ return (Witch) super.getEntity();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @return The target of the potion
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-05-24 05:08:04 +02:00
|
|
|
+ public LivingEntity getTarget() {
|
2018-05-17 02:49:47 +02:00
|
|
|
+ return target;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @return The potion the witch will throw at a player
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @Nullable
|
2018-05-17 02:49:47 +02:00
|
|
|
+ public ItemStack getPotion() {
|
|
|
|
+ return potion;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets the potion to be thrown at a player
|
|
|
|
+ * @param potion The potion
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ public void setPotion(@Nullable ItemStack potion) {
|
2018-05-17 02:49:47 +02:00
|
|
|
+ this.potion = potion != null ? potion.clone() : null;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
private static final HandlerList handlers = new HandlerList();
|
|
|
|
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
|
|
|
public HandlerList getHandlers() {
|
|
|
|
return handlers;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ @NotNull
|
|
|
|
public static HandlerList getHandlerList() {
|
|
|
|
return handlers;
|
|
|
|
}
|
2018-05-17 02:49:47 +02:00
|
|
|
|
|
|
|
private boolean cancelled = false;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * @return Event was cancelled or potion was null
|
|
|
|
+ */
|
|
|
|
@Override
|
|
|
|
public boolean isCancelled() {
|
|
|
|
- return cancelled;
|
|
|
|
+ return cancelled || potion == null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
--
|
2019-03-20 01:28:15 +01:00
|
|
|
2.21.0
|
2018-05-17 02:49:47 +02:00
|
|
|
|