3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 08:02:50 +02:00

Revert "Or this?"

This reverts commit 558144696a.
Dieser Commit ist enthalten in:
Jesse Boyd 2019-10-31 00:41:15 +01:00
Ursprung 558144696a
Commit ef47ea74df
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 59F1DE6293AF6E1F
2 geänderte Dateien mit 685 neuen und 679 gelöschten Zeilen

Datei anzeigen

@ -47,6 +47,8 @@ import java.util.stream.IntStream;
import javax.annotation.Nullable;
public class BlockType implements FawePattern, Keyed {
protected static final BlockType DUMMY = new BlockType();
public static final NamespacedRegistry<BlockType> REGISTRY = new NamespacedRegistry<>("block type");
private final String id;
@ -55,6 +57,12 @@ public class BlockType implements FawePattern, Keyed {
private boolean initItemType;
private ItemType itemType;
// Dummy
private BlockType() {
this.id = null;
this.settings = null;
}
protected BlockType(String id, int internalId, List<BlockState> states) {
int i = id.indexOf("[");
this.id = i == -1 ? id : id.substring(0, i);