mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Make sure leaves category is loaded for heightmaps (fixes #1176)
This commit is contained in:
parent
c98f6e4f37
commit
4d4db7dcd0
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user