summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/entity/LivingEntity.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bukkit/entity/LivingEntity.java')
-rw-r--r--src/main/java/org/bukkit/entity/LivingEntity.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
index 6c8b4f86..5e2a41ae 100644
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
@@ -321,51 +321,6 @@ public interface LivingEntity extends Entity, Damageable, ProjectileSource {
public boolean getCanPickupItems();
/**
- * Sets a custom name on a mob. This name will be used in death messages
- * and can be sent to the client as a nameplate over the mob.
- * <p>
- * Setting the name to null or an empty string will clear it.
- * <p>
- * This value has no effect on players, they will always use their real
- * name.
- *
- * @param name the name to set
- */
- public void setCustomName(String name);
-
- /**
- * Gets the custom name on a mob. If there is no name this method will
- * return null.
- * <p>
- * This value has no effect on players, they will always use their real
- * name.
- *
- * @return name of the mob or null
- */
- public String getCustomName();
-
- /**
- * Sets whether or not to display the mob's custom name client side. The
- * name will be displayed above the mob similarly to a player.
- * <p>
- * This value has no effect on players, they will always display their
- * name.
- *
- * @param flag custom name or not
- */
- public void setCustomNameVisible(boolean flag);
-
- /**
- * Gets whether or not the mob's custom name is displayed client side.
- * <p>
- * This value has no effect on players, they will always display their
- * name.
- *
- * @return if the custom name is displayed
- */
- public boolean isCustomNameVisible();
-
- /**
* Returns whether the entity is currently leashed.
*
* @return whether the entity is leashed