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

26 lines
1.3 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 AcaciaWallSign {
public static void initStates() {
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3759, "facing=north","waterlogged=true"));
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3760, "facing=north","waterlogged=false"));
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3761, "facing=south","waterlogged=true"));
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3762, "facing=south","waterlogged=false"));
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3763, "facing=west","waterlogged=true"));
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3764, "facing=west","waterlogged=false"));
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3765, "facing=east","waterlogged=true"));
Block.ACACIA_WALL_SIGN.addBlockAlternative(new BlockAlternative((short) 3766, "facing=east","waterlogged=false"));
}
}