aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0118-Allow-setting-the-vex-s-summoner.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/api/0118-Allow-setting-the-vex-s-summoner.patch')
-rw-r--r--patches/api/0118-Allow-setting-the-vex-s-summoner.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/patches/api/0118-Allow-setting-the-vex-s-summoner.patch b/patches/api/0118-Allow-setting-the-vex-s-summoner.patch
new file mode 100644
index 0000000000..1e6b3abb27
--- /dev/null
+++ b/patches/api/0118-Allow-setting-the-vex-s-summoner.patch
@@ -0,0 +1,32 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: BillyGalbreath <[email protected]>
+Date: Sat, 6 Oct 2018 21:47:09 -0500
+Subject: [PATCH] Allow setting the vex's summoner
+
+
+diff --git a/src/main/java/org/bukkit/entity/Vex.java b/src/main/java/org/bukkit/entity/Vex.java
+index dc21f3ba648ab02a2b75ec429501143398c356f6..627e3c1a96ae3331f5aa2dd7803dd2a31c7204be 100644
+--- a/src/main/java/org/bukkit/entity/Vex.java
++++ b/src/main/java/org/bukkit/entity/Vex.java
+@@ -73,4 +73,21 @@ public interface Vex extends Monster {
+ * @return true if the entity has limited life
+ */
+ boolean hasLimitedLife();
++ // Paper start
++
++ /**
++ * Get the Mob that summoned this vex
++ *
++ * @return Mob that summoned this vex
++ */
++ @Nullable
++ Mob getSummoner();
++
++ /**
++ * Set the summoner of this vex
++ *
++ * @param summoner New summoner
++ */
++ void setSummoner(@Nullable Mob summoner);
++ // Paper end
+ }