Add nether tress into floating tree remover (#2146)

* Add nether tress into floating tree remover

* Add nether stems
Dieser Commit ist enthalten in:
Phillipp Glanz 2023-03-17 22:58:53 +01:00 committet von GitHub
Ursprung 09b899c7a9
Commit b54e3a5112
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -64,7 +64,11 @@ public class FloatingTreeRemover implements BlockTool {
|| type == BlockTypes.RED_MUSHROOM_BLOCK
|| type == BlockTypes.BROWN_MUSHROOM_BLOCK
|| type == BlockTypes.MUSHROOM_STEM
|| type == BlockTypes.VINE;
|| type == BlockTypes.VINE
|| type == BlockTypes.NETHER_WART_BLOCK
|| type == BlockTypes.WARPED_WART_BLOCK
|| type == BlockTypes.CRIMSON_STEM
|| type == BlockTypes.WARPED_STEM;
}
@Override