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

55 Zeilen
1.1 KiB
Java

package net.minecraft.server;
public class Slot {
2011-05-14 16:29:42 +02:00
public final int index; // CraftBukkit - private -> public
2011-09-15 02:23:52 +02:00
public final IInventory inventory;
2011-02-23 03:37:56 +01:00
public int b;
public int c;
2011-09-15 02:23:52 +02:00
public int d;
public Slot(IInventory iinventory, int i, int j, int k) {
this.inventory = iinventory;
this.index = i;
2011-09-15 02:23:52 +02:00
this.c = j;
this.d = k;
}
2011-03-31 22:40:00 +02:00
public void a(ItemStack itemstack) {
2011-04-20 22:47:26 +02:00
this.c();
}
public boolean isAllowed(ItemStack itemstack) {
return true;
}
public ItemStack getItem() {
return this.inventory.getItem(this.index);
}
2011-04-20 22:47:26 +02:00
public boolean b() {
return this.getItem() != null;
}
2011-03-31 22:40:00 +02:00
public void c(ItemStack itemstack) {
this.inventory.setItem(this.index, itemstack);
2011-04-20 22:47:26 +02:00
this.c();
}
2011-04-20 22:47:26 +02:00
public void c() {
this.inventory.update();
}
2011-04-20 22:47:26 +02:00
public int d() {
return this.inventory.getMaxStackSize();
}
public ItemStack a(int i) {
return this.inventory.splitStack(this.index, i);
}
public boolean a(IInventory iinventory, int i) {
return iinventory == this.inventory && i == this.index;
}
}