[X] I am using a version of WorldEdit compatible with my Minecraft version.
[X] I am using a version of CraftBook compatible with my Minecraft version.
[X] I am using the latest or recommended version of my platform software.
[X] I am NOT using a hybrid server, e.g. a server that combines Bukkit and Forge. Examples include Arclight, Mohist, and Cardboard.
[X] I am NOT using a fork of WorldEdit, such as FastAsyncWorldEdit (FAWE) or AsyncWorldEdit (AWE)
Bug Description
nether_bricks and red_sand don't get recognized as a smeltable item, although they can be smelted to cracked_nether_bricks and glass. As a result pipes can't put them into furnaces.
Expected Behavior
Pipes should be able to put nether_bricks and red_sand into funaces.
Reproduction Steps
Try to input a stack of nether_bricks into an empty furnace using pipes.
Try to input a stack of red_sand into an empty furnace using pipes.
Anything Else?
case NETHER_BRICKS:
return new ItemStack(Material.CRACKED_NETHER_BRICKS);
case RED_SAND:
return new ItemStack(Material.GLASS);
CraftBook Version
3.10.8
Platform Version
Paper
Confirmations
Bug Description
nether_bricks
andred_sand
don't get recognized as a smeltable item, although they can be smelted tocracked_nether_bricks
andglass
. As a result pipes can't put them into furnaces.Expected Behavior
Pipes should be able to put
nether_bricks
andred_sand
into funaces.Reproduction Steps
nether_bricks
into an empty furnace using pipes.red_sand
into an empty furnace using pipes.Anything Else?
would need to be added to
getSmeltedResult
in https://github.com/EngineHub/CraftBook/blob/master/src/main/java/com/sk89q/craftbook/util/ItemUtil.java#L500