Regenerate list classes from MCUtils

(cherry picked from commit da4d70fab5c5e5efe242260b5d09ca273f944c55)
This commit is contained in:
Octavia Togami
2020-07-20 16:21:01 -04:00
committed by dordsor21
parent 68bd411c37
commit 1d05da75d8
5 changed files with 153 additions and 32 deletions

View File

@ -659,6 +659,7 @@ public final class BlockTypes {
@Nullable public static final BlockType SEAGRASS = init();
@Nullable public static final BlockType SHROOMLIGHT = init();
@Nullable public static final BlockType SHULKER_BOX = init();
@Deprecated @Nullable public static final BlockType SIGN = init();
@Nullable public static final BlockType SKELETON_SKULL = init();
@Nullable public static final BlockType SKELETON_WALL_SKULL = init();
@Nullable public static final BlockType SLIME_BLOCK = init();
@ -751,6 +752,7 @@ public final class BlockTypes {
@Nullable public static final BlockType TWISTING_VINES_PLANT = init();
@Nullable public static final BlockType VINE = init();
@Nullable public static final BlockType VOID_AIR = init();
@Deprecated @Nullable public static final BlockType WALL_SIGN = init();
@Nullable public static final BlockType WALL_TORCH = init();
@Nullable public static final BlockType WARPED_BUTTON = init();
@Nullable public static final BlockType WARPED_DOOR = init();
@ -805,10 +807,6 @@ public final class BlockTypes {
@Nullable public static final BlockType ZOMBIE_HEAD = init();
@Nullable public static final BlockType ZOMBIE_WALL_HEAD = init();
// deprecated
@Deprecated @Nullable public static BlockType SIGN = OAK_SIGN;
@Deprecated @Nullable public static BlockType WALL_SIGN = OAK_WALL_SIGN;
private static Field[] fieldsTmp;
private static JoinedCharSequence joined;
private static int initIndex = 0;