Make sure leaves category is loaded for heightmaps (fixes #1176)

This commit is contained in:
SirYwell 2021-07-16 17:52:44 +02:00
parent c98f6e4f37
commit 4d4db7dcd0
1 changed files with 4 additions and 0 deletions

View File

@ -39,6 +39,10 @@ public enum HeightMapType {
}
};
static {
BlockCategories.LEAVES.getAll(); // make sure this category is initialized, otherwise isLeaf might fail
}
private static boolean isLeaf(BlockState state) {
return BlockCategories.LEAVES.contains(state);
}