mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
3d1f804a22
Get's the NPC that summoned this Vex
30 lines
809 B
Diff
30 lines
809 B
Diff
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
|
|
|