Vex#getOwner API
Get's the NPC that summoned this Vex
This commit is contained in:
parent
467d4d463e
commit
3d1f804a22
2 changed files with 77 additions and 0 deletions
29
Spigot-API-Patches/0125-Vex-getOwner-API.patch
Normal file
29
Spigot-API-Patches/0125-Vex-getOwner-API.patch
Normal file
|
@ -0,0 +1,29 @@
|
|||
From 02a5c50ac1f88560d7555bc299b4d785f9aa63a4 Mon Sep 17 00:00:00 2001
|
||||
From: Aikar <aikar@aikar.co>
|
||||
Date: Wed, 4 Jul 2018 15:29:21 -0400
|
||||
Subject: [PATCH] Vex#getOwner API
|
||||
|
||||
Get's the NPC that summoned this Vex
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/entity/Vex.java b/src/main/java/org/bukkit/entity/Vex.java
|
||||
index a2f2fcae..540135c3 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Vex.java
|
||||
+++ b/src/main/java/org/bukkit/entity/Vex.java
|
||||
@@ -1,6 +1,13 @@
|
||||
package org.bukkit.entity;
|
||||
|
||||
+import com.destroystokyo.paper.entity.SentientNPC;
|
||||
+
|
||||
/**
|
||||
* Represents a Vex.
|
||||
*/
|
||||
-public interface Vex extends Monster { }
|
||||
+public interface Vex extends Monster {
|
||||
+ /**
|
||||
+ * @return What Entity (most likely an Evoker, but not guaranteed) summoned this Vex
|
||||
+ */
|
||||
+ SentientNPC getOwner(); // Paper
|
||||
+}
|
||||
--
|
||||
2.18.0
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue