Use proper naming convention for boolean methods.

This commit is contained in:
Travis Watkins 2013-03-15 14:25:37 -05:00
parent 83d29e461c
commit b2c72b968e

View File

@ -379,7 +379,7 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
getHandle().setCustomNameVisible(flag);
}
public boolean getCustomNameVisible() {
public boolean isCustomNameVisible() {
return getHandle().getCustomNameVisible();
}
}