Allow setting the vex's summoner (#1545)
This commit is contained in:
32
Spigot-API-Patches/Allow-setting-the-vex-s-summoner.patch
Normal file
32
Spigot-API-Patches/Allow-setting-the-vex-s-summoner.patch
Normal file
@@ -0,0 +1,32 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
||||
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 d395e405..78f0082e 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Vex.java
|
||||
+++ b/src/main/java/org/bukkit/entity/Vex.java
|
||||
@@ -0,0 +0,0 @@ public interface Vex extends Monster {
|
||||
/**
|
||||
* @return What Entity (most likely an Evoker, but not guaranteed) summoned this Vex
|
||||
*/
|
||||
- Mob getSummoner(); // Paper
|
||||
+ // Paper start
|
||||
+ /**
|
||||
+ * Get the Mob that summoned this vex
|
||||
+ *
|
||||
+ * @return Mob that summoned this vex
|
||||
+ */
|
||||
+ Mob getSummoner();
|
||||
|
||||
+ /**
|
||||
+ * Set the summoner of this vex
|
||||
+ *
|
||||
+ * @param summoner New summoner
|
||||
+ */
|
||||
+ void setSummoner(Mob summoner);
|
||||
+ // Paper end
|
||||
}
|
||||
--
|
||||
Reference in New Issue
Block a user