mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-30 04:02:50 +01:00
17b58d00d8
This was a useless exception wrapper that ends up making stack traces harder to read as well as the JVM cutting off the important parts Nothing catches this exception, so its safe to just get rid of it and let the REAL exception bubble down
26 lines
752 B
Diff
26 lines
752 B
Diff
From 31def18565e09b797cffabedeff88881b21ba67e Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Wed, 4 Jul 2018 15:29:21 -0400
|
|
Subject: [PATCH] Vex#getSummoner API
|
|
|
|
Get's the Mob 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..d395e405 100644
|
|
--- a/src/main/java/org/bukkit/entity/Vex.java
|
|
+++ b/src/main/java/org/bukkit/entity/Vex.java
|
|
@@ -3,4 +3,10 @@ package org.bukkit.entity;
|
|
/**
|
|
* 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
|
|
+ */
|
|
+ Mob getSummoner(); // Paper
|
|
+
|
|
+}
|
|
--
|
|
2.20.1
|
|
|