Fixed getArmorContents() return value

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot 2011-01-09 23:40:29 +01:00
parent 83dea7c90f
commit c97111ca58
2 changed files with 6 additions and 3 deletions

View file

@ -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;

View file

@ -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