diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java index 19ece6d3e..14fb05834 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/block/BlockTypes.java @@ -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(); diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java index c99c80edb..a6775803b 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/world/item/ItemTypes.java @@ -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();