SPIGOT-3604: Deprecate unused professions

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2017-10-09 18:17:33 +11:00
parent 28dfa926fd
commit cb18bb3d6f

View File

@ -58,7 +58,9 @@ public interface Villager extends Ageable, NPC, InventoryHolder, Merchant {
public enum Profession {
/**
* Normal. <b>Reserved for Zombies.</b>
* @deprecated Unused
*/
@Deprecated
NORMAL(true),
/**
* Farmer profession. Wears a brown robe.
@ -86,7 +88,9 @@ public interface Villager extends Ageable, NPC, InventoryHolder, Merchant {
NITWIT(false),
/**
* Husk. <b>Reserved for Zombies</b>
* @deprecated Unused
*/
@Deprecated
HUSK(true);
private final boolean zombie;
@ -98,7 +102,9 @@ public interface Villager extends Ageable, NPC, InventoryHolder, Merchant {
* Returns if this profession can only be used by zombies.
*
* @return zombie profession status
* @deprecated Unused
*/
@Deprecated
public boolean isZombie() {
return zombie;
}