Add PhantomPreSpawnEvent

This commit is contained in:
BillyGalbreath
2018-08-25 19:56:42 -05:00
parent b589db2d90
commit 72098bd870
2 changed files with 45 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
package org.bukkit.entity;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Represents a phantom.
*/
@@ -14,4 +17,14 @@ public interface Phantom extends Flying, Enemy {
* @param sz The new size of the phantom.
*/
public void setSize(int sz);
// Paper start
/**
* Get the UUID of the entity that caused this phantom to spawn
*
* @return UUID
*/
@Nullable
public java.util.UUID getSpawningEntity();
// Paper end
}