Paper/src/main/java/net/minecraft/server/InventoryCraftResult.java

56 Zeilen
1.0 KiB
Java

2011-01-29 22:50:29 +01:00
package net.minecraft.server;
public class InventoryCraftResult implements IInventory {
private ItemStack[] items = new ItemStack[1];
2011-01-29 22:50:29 +01:00
// CraftBukkit start
public ItemStack[] getContents() {
return this.items;
2011-01-29 22:50:29 +01:00
}
// CraftBukkit end
public InventoryCraftResult() {}
public int getSize() {
2011-02-23 03:37:56 +01:00
return 1;
2011-01-29 22:50:29 +01:00
}
public ItemStack getItem(int i) {
return this.items[i];
2011-01-29 22:50:29 +01:00
}
public String getName() {
2011-01-29 22:50:29 +01:00
return "Result";
}
public ItemStack splitStack(int i, int j) {
if (this.items[i] != null) {
ItemStack itemstack = this.items[i];
2011-01-29 22:50:29 +01:00
this.items[i] = null;
2011-01-29 22:50:29 +01:00
return itemstack;
} else {
return null;
}
}
public void setItem(int i, ItemStack itemstack) {
this.items[i] = itemstack;
2011-01-29 22:50:29 +01:00
}
public int getMaxStackSize() {
2011-01-29 22:50:29 +01:00
return 64;
}
public void update() {}
2011-01-29 22:50:29 +01:00
2011-09-15 02:23:52 +02:00
public boolean a(EntityHuman entityhuman) {
2011-01-29 22:50:29 +01:00
return true;
}
2011-09-15 02:23:52 +02:00
2011-11-20 09:01:14 +01:00
public void f() {}
2011-09-15 02:23:52 +02:00
2011-11-20 09:01:14 +01:00
public void g() {}
2011-01-29 22:50:29 +01:00
}