fix: Add missing Gray Candle types (#1383)

* Added Gray Candle types

Added GRAY_CANDLE & GRAY_CANDLE_CAKE

* Added Gray Candle to the ItemTypes
This commit is contained in:
Arcaniax 2021-10-29 16:57:58 +02:00 committed by GitHub
parent 14cb97d0ad
commit ee0d1b5a5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View File

@ -730,9 +730,9 @@ public final class BlockTypes {
@Nullable
public static final BlockType GRAY_BED = init();
@Nullable
public static final BlockType GREEN_CANDLE = init();
public static final BlockType GRAY_CANDLE = init();
@Nullable
public static final BlockType GREEN_CANDLE_CAKE = init();
public static final BlockType GRAY_CANDLE_CAKE = init();
@Nullable
public static final BlockType GRAY_CARPET = init();
@Nullable
@ -758,6 +758,10 @@ public final class BlockTypes {
@Nullable
public static final BlockType GREEN_BED = init();
@Nullable
public static final BlockType GREEN_CANDLE = init();
@Nullable
public static final BlockType GREEN_CANDLE_CAKE = init();
@Nullable
public static final BlockType GREEN_CARPET = init();
@Nullable
public static final BlockType GREEN_CONCRETE = init();

View File

@ -921,7 +921,7 @@ public final class ItemTypes {
@Nullable
public static final ItemType GRAY_BED = init();
@Nullable
public static final ItemType GREEN_CANDLE = init();
public static final ItemType GRAY_CANDLE = init();
@Nullable
public static final ItemType GRAY_CARPET = init();
@Nullable
@ -947,6 +947,8 @@ public final class ItemTypes {
@Nullable
public static final ItemType GREEN_BED = init();
@Nullable
public static final ItemType GREEN_CANDLE = init();
@Nullable
public static final ItemType GREEN_CARPET = init();
@Nullable
public static final ItemType GREEN_CONCRETE = init();