Added id_oak_sapling and id_birch_sapling

This commit is contained in:
CobaltXII
2019-01-04 12:53:11 -05:00
parent f46da5d2e8
commit 825e081793
3 changed files with 28 additions and 4 deletions

View File

@@ -183,6 +183,10 @@ enum block_id
id_beetroots_3,
id_oak_sapling,
id_birch_sapling,
id_null
};
@@ -366,7 +370,11 @@ std::vector<std::string> block_id_to_string =
"beetroots_2",
"beetroots_3"
"beetroots_3",
"oak_sapling",
"birch_sapling"
};
// Conversion from block_id to std::string (used for in-game text).
@@ -549,7 +557,11 @@ std::vector<std::string> block_id_to_block_name =
"Beetroots",
"Beetroots"
"Beetroots",
"Oak Sapling",
"Birch Sapling"
};
// Returns true if a block is a cross block. Otherwise, returns false.
@@ -566,7 +578,11 @@ inline bool is_cross(block_id id)
id == id_brown_mushroom ||
id == id_reeds
id == id_reeds ||
id == id_oak_sapling ||
id == id_birch_sapling
)
{
return true;

View File

@@ -269,6 +269,10 @@ void load_block_face_info_array()
make_face_info_all(block_name_to_layer.at("beetroots_stage_2")),
make_face_info_all(block_name_to_layer.at("beetroots_stage_3"))
make_face_info_all(block_name_to_layer.at("beetroots_stage_3")),
make_face_info_all(block_name_to_layer.at("sapling_oak")),
make_face_info_all(block_name_to_layer.at("sapling_birch"))
};
}

View File

@@ -137,6 +137,10 @@ std::vector<std::string> all_tex =
"stone_slab_top",
"sapling_birch",
"sapling_oak",
"stone",
"water_0",