mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 12:13:54 -07:00
Imported from mc-dev:
- TileEntity - Container - ContainerFurnace - ContainerDispenser - ContainerChest - ContainerEnchantTableSubcontainer - ContainerEnchantTableInventory - ContainerBrewingStand
This commit is contained in:
committed by
EvilSeph
parent
d20091e64c
commit
10e593649c
@@ -0,0 +1,20 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user