Commits
Shane Bee authored and md_5 committed 1fc6268e8fa
1 1 | package org.bukkit.entity; |
2 2 | |
3 3 | import org.bukkit.inventory.Inventory; |
4 4 | import org.bukkit.inventory.InventoryHolder; |
5 5 | import org.bukkit.inventory.Merchant; |
6 6 | import org.jetbrains.annotations.NotNull; |
7 7 | |
8 8 | /** |
9 9 | * Represents a villager NPC |
10 10 | */ |
11 - | public interface AbstractVillager extends Ageable, NPC, InventoryHolder, Merchant { |
11 + | public interface AbstractVillager extends Breedable, NPC, InventoryHolder, Merchant { |
12 12 | |
13 13 | /** |
14 14 | * Gets this villager's inventory. |
15 15 | * <br> |
16 16 | * Note that this inventory is not the Merchant inventory, rather, it is the |
17 17 | * items that a villager might have collected (from harvesting crops, etc.) |
18 18 | * |
19 19 | * {@inheritDoc} |
20 20 | */ |
21 21 | |