mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 13:36:16 +01:00
Fixed Compile error
This commit is contained in:
parent
e1acd683b4
commit
3c9944237a
@ -30,19 +30,19 @@ public class CraftInventoryPlayer extends CraftInventory implements PlayerInvent
|
|||||||
return getInventory().c;
|
return getInventory().c;
|
||||||
}
|
}
|
||||||
|
|
||||||
public CraftItemStack getHelmet() {
|
public ItemStack getHelmet() {
|
||||||
return getItem( getSize() + 3 );
|
return getItem( getSize() + 3 );
|
||||||
}
|
}
|
||||||
|
|
||||||
public CraftItemStack getChestplate() {
|
public ItemStack getChestplate() {
|
||||||
return getItem( getSize() + 2 );
|
return getItem( getSize() + 2 );
|
||||||
}
|
}
|
||||||
|
|
||||||
public CraftItemStack getLeggings() {
|
public ItemStack getLeggings() {
|
||||||
return getItem( getSize() + 1 );
|
return getItem( getSize() + 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
public CraftItemStack getBoots() {
|
public ItemStack getBoots() {
|
||||||
return getItem( getSize() + 0 );
|
return getItem( getSize() + 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user