- TileEntity - Container - ContainerFurnace - ContainerDispenser - ContainerChest - ContainerEnchantTableSubcontainer - ContainerEnchantTableInventory - ContainerBrewingStand
21 lines
472 B
Java
21 lines
472 B
Java
package net.minecraft.server;
|
|
|
|
class ContainerEnchantTableInventory extends ContainerEnchantTableSubcontainer {
|
|
|
|
final ContainerEnchantTable a;
|
|
|
|
ContainerEnchantTableInventory(ContainerEnchantTable containerenchanttable, String s, int i) {
|
|
super(s, i);
|
|
this.a = containerenchanttable;
|
|
}
|
|
|
|
public int getMaxStackSize() {
|
|
return 1;
|
|
}
|
|
|
|
public void update() {
|
|
super.update();
|
|
this.a.a((IInventory) this);
|
|
}
|
|
}
|