geforkt von Mirrors/FastAsyncWorldEdit
Ursprung
558144696a
Commit
ef47ea74df
@ -47,6 +47,8 @@ import java.util.stream.IntStream;
|
|||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
public class BlockType implements FawePattern, Keyed {
|
public class BlockType implements FawePattern, Keyed {
|
||||||
|
protected static final BlockType DUMMY = new BlockType();
|
||||||
|
|
||||||
public static final NamespacedRegistry<BlockType> REGISTRY = new NamespacedRegistry<>("block type");
|
public static final NamespacedRegistry<BlockType> REGISTRY = new NamespacedRegistry<>("block type");
|
||||||
|
|
||||||
private final String id;
|
private final String id;
|
||||||
@ -55,6 +57,12 @@ public class BlockType implements FawePattern, Keyed {
|
|||||||
private boolean initItemType;
|
private boolean initItemType;
|
||||||
private ItemType itemType;
|
private ItemType itemType;
|
||||||
|
|
||||||
|
// Dummy
|
||||||
|
private BlockType() {
|
||||||
|
this.id = null;
|
||||||
|
this.settings = null;
|
||||||
|
}
|
||||||
|
|
||||||
protected BlockType(String id, int internalId, List<BlockState> states) {
|
protected BlockType(String id, int internalId, List<BlockState> states) {
|
||||||
int i = id.indexOf("[");
|
int i = id.indexOf("[");
|
||||||
this.id = i == -1 ? id : id.substring(0, i);
|
this.id = i == -1 ? id : id.substring(0, i);
|
||||||
|
Datei-Diff unterdrückt, da er zu groß ist
Diff laden
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren