Actually initialize GameModes and WeatherTypes.

This commit is contained in:
wizjany
2019-05-02 00:08:19 -04:00
parent 5e81dd1c4c
commit 57c161a602
4 changed files with 22 additions and 14 deletions

View File

@ -628,7 +628,8 @@ public final class BlockTypes {
private BlockTypes() {
}
public static @Nullable BlockType get(final String id) {
@Nullable
public static BlockType get(final String id) {
return BlockType.REGISTRY.get(id);
}
}