geforkt von Mirrors/Paper
5b6dfb3463
This work is 100% unfinished. I am pushing it up so that we as a team can work on this update. Do not try to use this branch. You will fail.
30 Zeilen
809 B
Diff
30 Zeilen
809 B
Diff
From b906caf7828cd434767fed31635d853b077d7d09 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
|
|
|