mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 00:07:56 +01:00
SPIGOT-3604: Deprecate unused professions
By: md_5 <git@md-5.net>
This commit is contained in:
parent
28dfa926fd
commit
cb18bb3d6f
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user