mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
cc84e0fab8
Get's the NPC that summoned this Vex
27 lines
No EOL
798 B
Diff
27 lines
No EOL
798 B
Diff
From 0000000000000000000000000000000000000000 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
|
|
@@ -0,0 +0,0 @@
|
|
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
|
|
+}
|
|
--
|