mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-02 17:32:03 +01:00
Fixed Compile error
By: Tahg <tahgtahv@gmail.com>
This commit is contained in:
parent
8a6f57b746
commit
67a1520bb5
1 changed files with 4 additions and 4 deletions
|
@ -30,19 +30,19 @@ public class CraftInventoryPlayer extends CraftInventory implements PlayerInvent
|
|||
return getInventory().c;
|
||||
}
|
||||
|
||||
public CraftItemStack getHelmet() {
|
||||
public ItemStack getHelmet() {
|
||||
return getItem( getSize() + 3 );
|
||||
}
|
||||
|
||||
public CraftItemStack getChestplate() {
|
||||
public ItemStack getChestplate() {
|
||||
return getItem( getSize() + 2 );
|
||||
}
|
||||
|
||||
public CraftItemStack getLeggings() {
|
||||
public ItemStack getLeggings() {
|
||||
return getItem( getSize() + 1 );
|
||||
}
|
||||
|
||||
public CraftItemStack getBoots() {
|
||||
public ItemStack getBoots() {
|
||||
return getItem( getSize() + 0 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue