mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-27 02:21:38 +01:00
Remove states that only had 1 state.
This commit is contained in:
parent
993fc231b2
commit
be649146ed
@ -103,6 +103,10 @@ public final class BlockGenerator extends MinestomCodeGenerator {
|
||||
FieldSpec.builder(TypeName.BOOLEAN, "blockEntity")
|
||||
.addModifiers(Modifier.PRIVATE, Modifier.FINAL).build()
|
||||
);
|
||||
blockClass.addField(
|
||||
FieldSpec.builder(TypeName.BOOLEAN, "singleState")
|
||||
.addModifiers(Modifier.PRIVATE, Modifier.FINAL).build()
|
||||
);
|
||||
blockClass.addField(
|
||||
FieldSpec.builder(ParameterizedTypeName.get(ClassName.get("java.util", "List"), blockAltClassName), "alternatives")
|
||||
.initializer("new $T<>()", ClassName.get("java.util", "ArrayList"))
|
||||
@ -120,6 +124,7 @@ public final class BlockGenerator extends MinestomCodeGenerator {
|
||||
.addParameter(TypeName.BOOLEAN, "isAir")
|
||||
.addParameter(TypeName.BOOLEAN, "isSolid")
|
||||
.addParameter(TypeName.BOOLEAN, "blockEntity")
|
||||
.addParameter(TypeName.BOOLEAN, "singleState")
|
||||
|
||||
.addStatement("this.id = id")
|
||||
.addStatement("this.defaultID = defaultID")
|
||||
@ -128,6 +133,10 @@ public final class BlockGenerator extends MinestomCodeGenerator {
|
||||
.addStatement("this.isAir = isAir")
|
||||
.addStatement("this.isSolid = isSolid")
|
||||
.addStatement("this.blockEntity = blockEntity")
|
||||
.addStatement("this.singleState = singleState")
|
||||
.beginControlFlow("if (singleState)")
|
||||
.addStatement("addBlockAlternative(new $T(defaultID))", blockAltClassName)
|
||||
.endControlFlow()
|
||||
.addStatement("$T.blocks.put(id, this)", registriesClassName)
|
||||
.build()
|
||||
);
|
||||
@ -297,7 +306,7 @@ public final class BlockGenerator extends MinestomCodeGenerator {
|
||||
JsonArray states = block.get("states").getAsJsonArray();
|
||||
// Enum constant in Block
|
||||
blockClass.addEnumConstant(blockName, TypeSpec.anonymousClassBuilder(
|
||||
"$T.from($S), (short) $L, $L, $L, $L, $L, $L",
|
||||
"$T.from($S), (short) $L, $L, $L, $L, $L, $L, $L",
|
||||
namespaceIDClassName,
|
||||
block.get("id").getAsString(),
|
||||
block.get("defaultBlockState").getAsShort(),
|
||||
@ -305,72 +314,75 @@ public final class BlockGenerator extends MinestomCodeGenerator {
|
||||
block.get("explosionResistance").getAsDouble(),
|
||||
states.get(0).getAsJsonObject().get("isAir").getAsBoolean(),
|
||||
states.get(0).getAsJsonObject().get("isSolid").getAsBoolean(),
|
||||
block.get("blockEntity").getAsBoolean()
|
||||
block.get("blockEntity").getAsBoolean(),
|
||||
states.size() == 1
|
||||
).build()
|
||||
);
|
||||
ClassName blockStateSpecificClassName = ClassName.get(
|
||||
"net.minestom.server.instance.block.states",
|
||||
NameUtil.convertSnakeCaseToCamelCase(blockName.toLowerCase())
|
||||
);
|
||||
if (states.size() > 1) {
|
||||
ClassName blockStateSpecificClassName = ClassName.get(
|
||||
"net.minestom.server.instance.block.states",
|
||||
NameUtil.convertSnakeCaseToCamelCase(blockName.toLowerCase())
|
||||
);
|
||||
|
||||
// Common blockStateSpecificClass structure
|
||||
TypeSpec.Builder blockStateSpecificClass = TypeSpec.classBuilder(blockStateSpecificClassName)
|
||||
.addAnnotation(
|
||||
AnnotationSpec.builder(Deprecated.class)
|
||||
.addMember("since", "$S", "forever")
|
||||
.addMember("forRemoval", "$L", false).build()
|
||||
)
|
||||
.addModifiers(Modifier.PUBLIC, Modifier.FINAL).addJavadoc("AUTOGENERATED by " + getClass().getSimpleName());
|
||||
// Common blockStateSpecificClass structure
|
||||
TypeSpec.Builder blockStateSpecificClass = TypeSpec.classBuilder(blockStateSpecificClassName)
|
||||
.addAnnotation(
|
||||
AnnotationSpec.builder(Deprecated.class)
|
||||
.addMember("since", "$S", "forever")
|
||||
.addMember("forRemoval", "$L", false).build()
|
||||
)
|
||||
.addModifiers(Modifier.PUBLIC, Modifier.FINAL).addJavadoc("AUTOGENERATED by " + getClass().getSimpleName());
|
||||
|
||||
// initStates method
|
||||
MethodSpec.Builder initStatesMethod = MethodSpec.methodBuilder("initStates")
|
||||
.addModifiers(Modifier.PUBLIC, Modifier.STATIC);
|
||||
// initStates method
|
||||
MethodSpec.Builder initStatesMethod = MethodSpec.methodBuilder("initStates")
|
||||
.addModifiers(Modifier.PUBLIC, Modifier.STATIC);
|
||||
|
||||
// init States methods in block specific classes
|
||||
for (JsonElement s : states) {
|
||||
JsonObject state = s.getAsJsonObject();
|
||||
// init States methods in block specific classes
|
||||
for (JsonElement s : states) {
|
||||
JsonObject state = s.getAsJsonObject();
|
||||
|
||||
// block state properties
|
||||
JsonObject properties = state.get("properties").getAsJsonObject();
|
||||
if (properties.size() != 0) {
|
||||
StringBuilder propertiesStr = new StringBuilder();
|
||||
// has properties
|
||||
for (Map.Entry<String, JsonElement> entry : properties.entrySet()) {
|
||||
String key = entry.getKey();
|
||||
String value = entry.getValue().getAsString();
|
||||
propertiesStr.append('"').append(key).append('=').append(value).append("\",");
|
||||
// block state properties
|
||||
JsonObject properties = state.get("properties").getAsJsonObject();
|
||||
if (properties.size() != 0) {
|
||||
StringBuilder propertiesStr = new StringBuilder();
|
||||
// has properties
|
||||
for (Map.Entry<String, JsonElement> entry : properties.entrySet()) {
|
||||
String key = entry.getKey();
|
||||
String value = entry.getValue().getAsString();
|
||||
propertiesStr.append('"').append(key).append('=').append(value).append("\",");
|
||||
}
|
||||
// Delete last comma
|
||||
propertiesStr.deleteCharAt(propertiesStr.length() - 1);
|
||||
|
||||
initStatesMethod.addStatement(
|
||||
"$T.$N.addBlockAlternative(new $T((short) $L, **REPLACE**))".replace("**REPLACE**", propertiesStr.toString()),
|
||||
blockClassName,
|
||||
blockName,
|
||||
blockAltClassName,
|
||||
state.get("id").getAsShort()
|
||||
);
|
||||
} else {
|
||||
// has no properties
|
||||
initStatesMethod.addStatement(
|
||||
"$T.$N.addBlockAlternative(new $T((short) $L))",
|
||||
blockClassName,
|
||||
blockName,
|
||||
blockAltClassName,
|
||||
state.get("id").getAsShort()
|
||||
);
|
||||
}
|
||||
// Delete last comma
|
||||
propertiesStr.deleteCharAt(propertiesStr.length() - 1);
|
||||
|
||||
initStatesMethod.addStatement(
|
||||
"$T.$N.addBlockAlternative(new $T((short) $L, **REPLACE**))".replace("**REPLACE**", propertiesStr.toString()),
|
||||
blockClassName,
|
||||
blockName,
|
||||
blockAltClassName,
|
||||
state.get("id").getAsShort()
|
||||
);
|
||||
} else {
|
||||
// has no properties
|
||||
initStatesMethod.addStatement(
|
||||
"$T.$N.addBlockAlternative(new $T((short) $L))",
|
||||
blockClassName,
|
||||
blockName,
|
||||
blockAltClassName,
|
||||
state.get("id").getAsShort()
|
||||
);
|
||||
}
|
||||
|
||||
// Add initStates method
|
||||
blockStateSpecificClass.addMethod(initStatesMethod.build());
|
||||
|
||||
// Add initStates method refence to static block
|
||||
staticBlock.addStatement("$T.initStates()", blockStateSpecificClassName);
|
||||
|
||||
// Add BlockStates to list of files we need to write:
|
||||
filesToWrite.add(JavaFile.builder("net.minestom.server.instance.block.states", blockStateSpecificClass.build()).indent(" ").build());
|
||||
}
|
||||
|
||||
// Add initStates method
|
||||
blockStateSpecificClass.addMethod(initStatesMethod.build());
|
||||
|
||||
// Add initStates method refence to static block
|
||||
staticBlock.addStatement("$T.initStates()", blockStateSpecificClassName);
|
||||
|
||||
// Add BlockStates to list of files we need to write:
|
||||
filesToWrite.add(JavaFile.builder("net.minestom.server.instance.block.states", blockStateSpecificClass.build()).indent(" ").build());
|
||||
}
|
||||
blockClass.addStaticBlock(staticBlock.build());
|
||||
// Add ignore deprecations annotation
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,18 +0,0 @@
|
||||
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 AcaciaPlanks {
|
||||
public static void initStates() {
|
||||
Block.ACACIA_PLANKS.addBlockAlternative(new BlockAlternative((short) 19));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Air {
|
||||
public static void initStates() {
|
||||
Block.AIR.addBlockAlternative(new BlockAlternative((short) 0));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Allium {
|
||||
public static void initStates() {
|
||||
Block.ALLIUM.addBlockAlternative(new BlockAlternative((short) 1415));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 AncientDebris {
|
||||
public static void initStates() {
|
||||
Block.ANCIENT_DEBRIS.addBlockAlternative(new BlockAlternative((short) 15835));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Andesite {
|
||||
public static void initStates() {
|
||||
Block.ANDESITE.addBlockAlternative(new BlockAlternative((short) 6));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 AzureBluet {
|
||||
public static void initStates() {
|
||||
Block.AZURE_BLUET.addBlockAlternative(new BlockAlternative((short) 1416));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BambooSapling {
|
||||
public static void initStates() {
|
||||
Block.BAMBOO_SAPLING.addBlockAlternative(new BlockAlternative((short) 9655));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Barrier {
|
||||
public static void initStates() {
|
||||
Block.BARRIER.addBlockAlternative(new BlockAlternative((short) 7540));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Beacon {
|
||||
public static void initStates() {
|
||||
Block.BEACON.addBlockAlternative(new BlockAlternative((short) 5660));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Bedrock {
|
||||
public static void initStates() {
|
||||
Block.BEDROCK.addBlockAlternative(new BlockAlternative((short) 33));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BirchPlanks {
|
||||
public static void initStates() {
|
||||
Block.BIRCH_PLANKS.addBlockAlternative(new BlockAlternative((short) 17));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlackCarpet {
|
||||
public static void initStates() {
|
||||
Block.BLACK_CARPET.addBlockAlternative(new BlockAlternative((short) 7885));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlackConcrete {
|
||||
public static void initStates() {
|
||||
Block.BLACK_CONCRETE.addBlockAlternative(new BlockAlternative((short) 9457));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlackConcretePowder {
|
||||
public static void initStates() {
|
||||
Block.BLACK_CONCRETE_POWDER.addBlockAlternative(new BlockAlternative((short) 9473));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlackStainedGlass {
|
||||
public static void initStates() {
|
||||
Block.BLACK_STAINED_GLASS.addBlockAlternative(new BlockAlternative((short) 4110));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlackTerracotta {
|
||||
public static void initStates() {
|
||||
Block.BLACK_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 6866));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlackWool {
|
||||
public static void initStates() {
|
||||
Block.BLACK_WOOL.addBlockAlternative(new BlockAlternative((short) 1399));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Blackstone {
|
||||
public static void initStates() {
|
||||
Block.BLACKSTONE.addBlockAlternative(new BlockAlternative((short) 15847));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueCarpet {
|
||||
public static void initStates() {
|
||||
Block.BLUE_CARPET.addBlockAlternative(new BlockAlternative((short) 7881));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueConcrete {
|
||||
public static void initStates() {
|
||||
Block.BLUE_CONCRETE.addBlockAlternative(new BlockAlternative((short) 9453));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueConcretePowder {
|
||||
public static void initStates() {
|
||||
Block.BLUE_CONCRETE_POWDER.addBlockAlternative(new BlockAlternative((short) 9469));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueIce {
|
||||
public static void initStates() {
|
||||
Block.BLUE_ICE.addBlockAlternative(new BlockAlternative((short) 9652));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueOrchid {
|
||||
public static void initStates() {
|
||||
Block.BLUE_ORCHID.addBlockAlternative(new BlockAlternative((short) 1414));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueStainedGlass {
|
||||
public static void initStates() {
|
||||
Block.BLUE_STAINED_GLASS.addBlockAlternative(new BlockAlternative((short) 4106));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueTerracotta {
|
||||
public static void initStates() {
|
||||
Block.BLUE_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 6862));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BlueWool {
|
||||
public static void initStates() {
|
||||
Block.BLUE_WOOL.addBlockAlternative(new BlockAlternative((short) 1395));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Bookshelf {
|
||||
public static void initStates() {
|
||||
Block.BOOKSHELF.addBlockAlternative(new BlockAlternative((short) 1432));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrainCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.BRAIN_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9520));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Bricks {
|
||||
public static void initStates() {
|
||||
Block.BRICKS.addBlockAlternative(new BlockAlternative((short) 1429));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrownCarpet {
|
||||
public static void initStates() {
|
||||
Block.BROWN_CARPET.addBlockAlternative(new BlockAlternative((short) 7882));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrownConcrete {
|
||||
public static void initStates() {
|
||||
Block.BROWN_CONCRETE.addBlockAlternative(new BlockAlternative((short) 9454));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrownConcretePowder {
|
||||
public static void initStates() {
|
||||
Block.BROWN_CONCRETE_POWDER.addBlockAlternative(new BlockAlternative((short) 9470));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrownMushroom {
|
||||
public static void initStates() {
|
||||
Block.BROWN_MUSHROOM.addBlockAlternative(new BlockAlternative((short) 1425));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrownStainedGlass {
|
||||
public static void initStates() {
|
||||
Block.BROWN_STAINED_GLASS.addBlockAlternative(new BlockAlternative((short) 4107));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrownTerracotta {
|
||||
public static void initStates() {
|
||||
Block.BROWN_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 6863));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BrownWool {
|
||||
public static void initStates() {
|
||||
Block.BROWN_WOOL.addBlockAlternative(new BlockAlternative((short) 1396));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 BubbleCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.BUBBLE_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9521));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CartographyTable {
|
||||
public static void initStates() {
|
||||
Block.CARTOGRAPHY_TABLE.addBlockAlternative(new BlockAlternative((short) 14823));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CaveAir {
|
||||
public static void initStates() {
|
||||
Block.CAVE_AIR.addBlockAlternative(new BlockAlternative((short) 9670));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 ChiseledNetherBricks {
|
||||
public static void initStates() {
|
||||
Block.CHISELED_NETHER_BRICKS.addBlockAlternative(new BlockAlternative((short) 17109));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 ChiseledPolishedBlackstone {
|
||||
public static void initStates() {
|
||||
Block.CHISELED_POLISHED_BLACKSTONE.addBlockAlternative(new BlockAlternative((short) 16261));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 ChiseledQuartzBlock {
|
||||
public static void initStates() {
|
||||
Block.CHISELED_QUARTZ_BLOCK.addBlockAlternative(new BlockAlternative((short) 6743));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 ChiseledRedSandstone {
|
||||
public static void initStates() {
|
||||
Block.CHISELED_RED_SANDSTONE.addBlockAlternative(new BlockAlternative((short) 8222));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 ChiseledSandstone {
|
||||
public static void initStates() {
|
||||
Block.CHISELED_SANDSTONE.addBlockAlternative(new BlockAlternative((short) 247));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 ChiseledStoneBricks {
|
||||
public static void initStates() {
|
||||
Block.CHISELED_STONE_BRICKS.addBlockAlternative(new BlockAlternative((short) 4498));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Clay {
|
||||
public static void initStates() {
|
||||
Block.CLAY.addBlockAlternative(new BlockAlternative((short) 3947));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CoalBlock {
|
||||
public static void initStates() {
|
||||
Block.COAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 7887));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CoalOre {
|
||||
public static void initStates() {
|
||||
Block.COAL_ORE.addBlockAlternative(new BlockAlternative((short) 71));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CoarseDirt {
|
||||
public static void initStates() {
|
||||
Block.COARSE_DIRT.addBlockAlternative(new BlockAlternative((short) 11));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Cobblestone {
|
||||
public static void initStates() {
|
||||
Block.COBBLESTONE.addBlockAlternative(new BlockAlternative((short) 14));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Cobweb {
|
||||
public static void initStates() {
|
||||
Block.COBWEB.addBlockAlternative(new BlockAlternative((short) 1341));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Cornflower {
|
||||
public static void initStates() {
|
||||
Block.CORNFLOWER.addBlockAlternative(new BlockAlternative((short) 1422));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CrackedNetherBricks {
|
||||
public static void initStates() {
|
||||
Block.CRACKED_NETHER_BRICKS.addBlockAlternative(new BlockAlternative((short) 17110));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CrackedPolishedBlackstoneBricks {
|
||||
public static void initStates() {
|
||||
Block.CRACKED_POLISHED_BLACKSTONE_BRICKS.addBlockAlternative(new BlockAlternative((short) 16260));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CrackedStoneBricks {
|
||||
public static void initStates() {
|
||||
Block.CRACKED_STONE_BRICKS.addBlockAlternative(new BlockAlternative((short) 4497));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CraftingTable {
|
||||
public static void initStates() {
|
||||
Block.CRAFTING_TABLE.addBlockAlternative(new BlockAlternative((short) 3356));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CrimsonFungus {
|
||||
public static void initStates() {
|
||||
Block.CRIMSON_FUNGUS.addBlockAlternative(new BlockAlternative((short) 14996));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CrimsonNylium {
|
||||
public static void initStates() {
|
||||
Block.CRIMSON_NYLIUM.addBlockAlternative(new BlockAlternative((short) 14995));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CrimsonPlanks {
|
||||
public static void initStates() {
|
||||
Block.CRIMSON_PLANKS.addBlockAlternative(new BlockAlternative((short) 15053));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CrimsonRoots {
|
||||
public static void initStates() {
|
||||
Block.CRIMSON_ROOTS.addBlockAlternative(new BlockAlternative((short) 15052));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CryingObsidian {
|
||||
public static void initStates() {
|
||||
Block.CRYING_OBSIDIAN.addBlockAlternative(new BlockAlternative((short) 15836));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CutRedSandstone {
|
||||
public static void initStates() {
|
||||
Block.CUT_RED_SANDSTONE.addBlockAlternative(new BlockAlternative((short) 8223));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CutSandstone {
|
||||
public static void initStates() {
|
||||
Block.CUT_SANDSTONE.addBlockAlternative(new BlockAlternative((short) 248));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CyanCarpet {
|
||||
public static void initStates() {
|
||||
Block.CYAN_CARPET.addBlockAlternative(new BlockAlternative((short) 7879));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CyanConcrete {
|
||||
public static void initStates() {
|
||||
Block.CYAN_CONCRETE.addBlockAlternative(new BlockAlternative((short) 9451));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CyanConcretePowder {
|
||||
public static void initStates() {
|
||||
Block.CYAN_CONCRETE_POWDER.addBlockAlternative(new BlockAlternative((short) 9467));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CyanStainedGlass {
|
||||
public static void initStates() {
|
||||
Block.CYAN_STAINED_GLASS.addBlockAlternative(new BlockAlternative((short) 4104));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CyanTerracotta {
|
||||
public static void initStates() {
|
||||
Block.CYAN_TERRACOTTA.addBlockAlternative(new BlockAlternative((short) 6860));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 CyanWool {
|
||||
public static void initStates() {
|
||||
Block.CYAN_WOOL.addBlockAlternative(new BlockAlternative((short) 1393));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Dandelion {
|
||||
public static void initStates() {
|
||||
Block.DANDELION.addBlockAlternative(new BlockAlternative((short) 1412));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DarkOakPlanks {
|
||||
public static void initStates() {
|
||||
Block.DARK_OAK_PLANKS.addBlockAlternative(new BlockAlternative((short) 20));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DarkPrismarine {
|
||||
public static void initStates() {
|
||||
Block.DARK_PRISMARINE.addBlockAlternative(new BlockAlternative((short) 7607));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DeadBrainCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.DEAD_BRAIN_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9515));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DeadBubbleCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.DEAD_BUBBLE_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9516));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DeadBush {
|
||||
public static void initStates() {
|
||||
Block.DEAD_BUSH.addBlockAlternative(new BlockAlternative((short) 1344));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DeadFireCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.DEAD_FIRE_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9517));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DeadHornCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.DEAD_HORN_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9518));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DeadTubeCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.DEAD_TUBE_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9514));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DiamondBlock {
|
||||
public static void initStates() {
|
||||
Block.DIAMOND_BLOCK.addBlockAlternative(new BlockAlternative((short) 3355));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DiamondOre {
|
||||
public static void initStates() {
|
||||
Block.DIAMOND_ORE.addBlockAlternative(new BlockAlternative((short) 3354));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Diorite {
|
||||
public static void initStates() {
|
||||
Block.DIORITE.addBlockAlternative(new BlockAlternative((short) 4));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Dirt {
|
||||
public static void initStates() {
|
||||
Block.DIRT.addBlockAlternative(new BlockAlternative((short) 10));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DragonEgg {
|
||||
public static void initStates() {
|
||||
Block.DRAGON_EGG.addBlockAlternative(new BlockAlternative((short) 5159));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 DriedKelpBlock {
|
||||
public static void initStates() {
|
||||
Block.DRIED_KELP_BLOCK.addBlockAlternative(new BlockAlternative((short) 9501));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 EmeraldBlock {
|
||||
public static void initStates() {
|
||||
Block.EMERALD_BLOCK.addBlockAlternative(new BlockAlternative((short) 5407));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 EmeraldOre {
|
||||
public static void initStates() {
|
||||
Block.EMERALD_ORE.addBlockAlternative(new BlockAlternative((short) 5254));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 EnchantingTable {
|
||||
public static void initStates() {
|
||||
Block.ENCHANTING_TABLE.addBlockAlternative(new BlockAlternative((short) 5136));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 EndGateway {
|
||||
public static void initStates() {
|
||||
Block.END_GATEWAY.addBlockAlternative(new BlockAlternative((short) 9228));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 EndPortal {
|
||||
public static void initStates() {
|
||||
Block.END_PORTAL.addBlockAlternative(new BlockAlternative((short) 5149));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 EndStone {
|
||||
public static void initStates() {
|
||||
Block.END_STONE.addBlockAlternative(new BlockAlternative((short) 5158));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 EndStoneBricks {
|
||||
public static void initStates() {
|
||||
Block.END_STONE_BRICKS.addBlockAlternative(new BlockAlternative((short) 9222));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Fern {
|
||||
public static void initStates() {
|
||||
Block.FERN.addBlockAlternative(new BlockAlternative((short) 1343));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 FireCoralBlock {
|
||||
public static void initStates() {
|
||||
Block.FIRE_CORAL_BLOCK.addBlockAlternative(new BlockAlternative((short) 9522));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 FletchingTable {
|
||||
public static void initStates() {
|
||||
Block.FLETCHING_TABLE.addBlockAlternative(new BlockAlternative((short) 14824));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 FlowerPot {
|
||||
public static void initStates() {
|
||||
Block.FLOWER_POT.addBlockAlternative(new BlockAlternative((short) 6309));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 GildedBlackstone {
|
||||
public static void initStates() {
|
||||
Block.GILDED_BLACKSTONE.addBlockAlternative(new BlockAlternative((short) 16672));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Glass {
|
||||
public static void initStates() {
|
||||
Block.GLASS.addBlockAlternative(new BlockAlternative((short) 231));
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
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 Glowstone {
|
||||
public static void initStates() {
|
||||
Block.GLOWSTONE.addBlockAlternative(new BlockAlternative((short) 4013));
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user