Minestom/src/autogenerated/java/net/minestom/server/instance/block/states/Barrel.java

30 lines
1.6 KiB
Java

package net.minestom.server.instance.block.states;
import java.lang.Deprecated;
import net.minestom.server.instance.block.Block;
import net.minestom.server.instance.block.BlockAlternative;
/**
* AUTOGENERATED by BlockGenerator
*/
@Deprecated(
since = "forever",
forRemoval = false
)
public final class Barrel {
public static void initStates() {
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14795, "facing=north","open=true"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14796, "facing=north","open=false"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14797, "facing=east","open=true"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14798, "facing=east","open=false"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14799, "facing=south","open=true"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14800, "facing=south","open=false"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14801, "facing=west","open=true"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14802, "facing=west","open=false"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14803, "facing=up","open=true"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14804, "facing=up","open=false"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14805, "facing=down","open=true"));
Block.BARREL.addBlockAlternative(new BlockAlternative((short) 14806, "facing=down","open=false"));
}
}