Commits
md_5 authored fe18cbabd8d
5 5 | |
6 6 | /** |
7 7 | * An interface to the inventory of an {@link AbstractHorse}. |
8 8 | */ |
9 9 | public interface AbstractHorseInventory extends Inventory { |
10 10 | |
11 11 | /** |
12 12 | * Gets the item in the horse's saddle slot. |
13 13 | * |
14 14 | * @return the saddle item |
15 + | * @deprecated llama's cannot have saddles |
15 16 | */ |
16 17 | |
18 + | since = "1.21.5") | (
17 19 | ItemStack getSaddle(); |
18 20 | |
19 21 | /** |
20 22 | * Sets the item in the horse's saddle slot. |
21 23 | * |
22 24 | * @param stack the new item |
25 + | * @deprecated llama's cannot have saddles |
23 26 | */ |
27 + | since = "1.21.5") | (
24 28 | void setSaddle( ItemStack stack); |
25 29 | } |