Commits

md_5 authored c6bf40e4e76
SPIGOT-2776: Add Nitwit profession
No tags

src/main/java/org/bukkit/entity/Villager.java

Modified
131 131 */
132 132 PRIEST(false),
133 133 /**
134 134 * Blacksmith profession. Wears a black apron.
135 135 */
136 136 BLACKSMITH(false),
137 137 /**
138 138 * Butcher profession. Wears a white apron.
139 139 */
140 140 BUTCHER(false),
141 + /**
142 + * Nitwit profession. Wears a green apron, cannot trade.
143 + */
144 + NITWIT(false),
141 145 /**
142 146 * Husk. <b>Reserved for Zombies</b>
143 147 */
144 148 HUSK(true);
145 149 private final boolean zombie;
146 150
147 151 private Profession(boolean zombie) {
148 152 this.zombie = zombie;
149 153 }
150 154

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut