Revert "Like this @mattbdev ?"

This reverts commit bddf92cd9b.
This commit is contained in:
Jesse Boyd 2019-10-31 00:41:36 +01:00
parent ef47ea74df
commit e1b9b9e3e8
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
2 changed files with 677 additions and 684 deletions

View File

@ -47,7 +47,6 @@ 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");
@ -57,12 +56,6 @@ 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);