3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-10-01 19:30:06 +02:00

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

Dieser Commit ist enthalten in:
SirYwell 2021-07-16 17:52:44 +02:00
Ursprung c98f6e4f37
Commit 4d4db7dcd0

Datei anzeigen

@ -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) { private static boolean isLeaf(BlockState state) {
return BlockCategories.LEAVES.contains(state); return BlockCategories.LEAVES.contains(state);
} }