#1068: TreeType - add missing pale oak trees

This commit is contained in:
shanebeee 2024-10-24 07:07:52 +11:00 committed by md_5
parent 98a38e6a88
commit 72059e3559
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -1,5 +1,7 @@
package org.bukkit;
import org.jetbrains.annotations.ApiStatus;
/**
* Tree and organic structure types.
*/
@ -101,4 +103,16 @@ public enum TreeType {
* Cherry tree
*/
CHERRY,
/**
* Pale oak tree
*/
@ApiStatus.Experimental
@MinecraftExperimental(MinecraftExperimental.Requires.WINTER_DROP)
PALE_OAK,
/**
* Pale oak tree with a creaking heart
*/
@ApiStatus.Experimental
@MinecraftExperimental(MinecraftExperimental.Requires.WINTER_DROP)
PALE_OAK_CREAKING,
}