mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Fixed getArmorContents() return value
By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
parent
83dea7c90f
commit
c97111ca58
2 changed files with 6 additions and 3 deletions
|
@ -126,6 +126,11 @@ public class ItemStack {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "ItemStack{"+getType().name()+" x "+getAmount()+"}";
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object object) {
|
public boolean equals(Object object) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
package org.bukkit;
|
package org.bukkit;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Includes interface to the 4 armor slots
|
* Includes interface to the 4 armor slots
|
||||||
*/
|
*/
|
||||||
|
@ -11,7 +9,7 @@ public interface PlayerInventory extends Inventory {
|
||||||
*
|
*
|
||||||
* @return All the ItemStacks from the armor slots
|
* @return All the ItemStacks from the armor slots
|
||||||
*/
|
*/
|
||||||
public ArrayList<ItemStack> getArmorContents();
|
public ItemStack[] getArmorContents();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the ItemStack from the helmet slot
|
* Return the ItemStack from the helmet slot
|
||||||
|
|
Loading…
Reference in a new issue