mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-25 17:14:28 +00:00
Fixed formatting error in BukkitEntity.
This commit is contained in:
@ -55,7 +55,7 @@ class BukkitEntity implements Entity {
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
<T> T getMetaData(Class<T> metaDataClass) {
|
||||
if (metaDataClass == Tameable.class && getEntity() instanceof org.bukkit.entity.Tameable) {
|
||||
if (metaDataClass == Tameable.class && getEntity() instanceof org.bukkit.entity.Tameable) {
|
||||
return (T) new TameableAdapter((org.bukkit.entity.Tameable) getEntity());
|
||||
} else {
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user