Tameable#getOwnerUniqueId API

This is faster if all you need is the UUID, as .getOwner() will cause
an OfflinePlayer to be loaded from disk.
This commit is contained in:
Aikar 2018-02-24 00:55:52 -05:00
parent f229e2c798
commit 4198da1e99

View File

@ -1,5 +1,6 @@
package org.bukkit.entity;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public interface Tameable extends Animals {
@ -25,9 +26,22 @@ public interface Tameable extends Animals {
*/
public void setTamed(boolean tame);
// Paper start
/**
* Gets the owners UUID
*
* @return the owners UUID, or null if not owned
*/
@Nullable
public java.util.UUID getOwnerUniqueId();
// Paper end
/**
* Gets the current owning AnimalTamer
*
* @see #getOwnerUniqueId() Recommended to use UUID version instead of this for performance.
* This method will cause OfflinePlayer to be loaded from disk if the owner is not online.
*
* @return the owning AnimalTamer, or null if not owned
*/
@Nullable