geforkt von Mirrors/Paper
52 Zeilen
953 B
Java
52 Zeilen
953 B
Java
package net.minecraft.server;
|
|
|
|
public class InventoryCraftResult implements IInventory {
|
|
|
|
private ItemStack[] a = new ItemStack[1];
|
|
|
|
// CraftBukkit start
|
|
public ItemStack[] getContents() {
|
|
return a;
|
|
}
|
|
// CraftBukkit end
|
|
|
|
public InventoryCraftResult() {}
|
|
|
|
public int h_() {
|
|
return this.a.length; //Craftbukkit
|
|
}
|
|
|
|
public ItemStack a(int i) {
|
|
return this.a[i];
|
|
}
|
|
|
|
public String b() {
|
|
return "Result";
|
|
}
|
|
|
|
public ItemStack b(int i, int j) {
|
|
if (this.a[i] != null) {
|
|
ItemStack itemstack = this.a[i];
|
|
|
|
this.a[i] = null;
|
|
return itemstack;
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public void a(int i, ItemStack itemstack) {
|
|
this.a[i] = itemstack;
|
|
}
|
|
|
|
public int c() {
|
|
return 64;
|
|
}
|
|
|
|
public void d() {}
|
|
|
|
public boolean a_(EntityHuman entityhuman) {
|
|
return true;
|
|
}
|
|
}
|