Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into five
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Jun 29, 2023
2 parents 5cd0bb1 + 6a10e04 commit 72a57dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,8 @@ && isSameSapling(sapling, sapling.getRelative(i1 + 1, 0, j1 + 1))) {
treeType = TreeType.ACACIA;
} else if (data == Material.DARK_OAK_SAPLING) {
treeType = TreeType.DARK_OAK;
} else if (data == Material.AZALEA || data == Material.FLOWERING_AZALEA) {
treeType = TreeType.AZALEA;
} else {
treeType = TreeType.TREE;
if (random.nextInt(10) == 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,7 @@ public static ItemStack getSmeltedResult(ItemStack item) {
case DEEPSLATE_DIAMOND_ORE:
return new ItemStack(Material.DIAMOND);
case SAND:
case RED_SAND:
return new ItemStack(Material.GLASS);
case CLAY_BALL:
return new ItemStack(Material.BRICK);
Expand All @@ -556,6 +557,8 @@ public static ItemStack getSmeltedResult(ItemStack item) {
return new ItemStack(Material.QUARTZ);
case STONE_BRICKS:
return new ItemStack(Material.CRACKED_STONE_BRICKS);
case NETHER_BRICKS:
return new ItemStack(Material.CRACKED_NETHER_BRICKS);
case WET_SPONGE:
return new ItemStack(Material.SPONGE);
case WHITE_TERRACOTTA:
Expand Down

0 comments on commit 72a57dd

Please sign in to comment.