blob: b5e85a9f2bdf4c828976bce9b96c24d48de26105 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package common.tileentities;
import thaumcraft.common.tiles.TileJarFillable;
public class TE_IchorJar extends TileJarFillable {
public TE_IchorJar() {
super.maxAmount = 4096;
}
}
|