Added proper trees to Mesa biomes
Mesa only has small apple trees.
This commit is contained in:
parent
134246fb15
commit
2bbfd0341f
@ -224,9 +224,6 @@ void GetTreeImageByBiome(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_No
|
|||||||
case biMegaTaiga:
|
case biMegaTaiga:
|
||||||
case biMegaTaigaHills:
|
case biMegaTaigaHills:
|
||||||
case biExtremeHillsPlus:
|
case biExtremeHillsPlus:
|
||||||
case biMesa:
|
|
||||||
case biMesaPlateauF:
|
|
||||||
case biMesaPlateau:
|
|
||||||
case biSunflowerPlains:
|
case biSunflowerPlains:
|
||||||
case biDesertM:
|
case biDesertM:
|
||||||
case biExtremeHillsM:
|
case biExtremeHillsM:
|
||||||
@ -239,9 +236,6 @@ void GetTreeImageByBiome(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_No
|
|||||||
case biMegaSpruceTaiga:
|
case biMegaSpruceTaiga:
|
||||||
case biMegaSpruceTaigaHills:
|
case biMegaSpruceTaigaHills:
|
||||||
case biExtremeHillsPlusM:
|
case biExtremeHillsPlusM:
|
||||||
case biMesaBryce:
|
|
||||||
case biMesaPlateauFM:
|
|
||||||
case biMesaPlateauM:
|
|
||||||
{
|
{
|
||||||
// TODO: These need their special trees
|
// TODO: These need their special trees
|
||||||
GetBirchTreeImage(a_BlockX, a_BlockY, a_BlockZ, a_Noise, a_Seq, a_LogBlocks, a_OtherBlocks);
|
GetBirchTreeImage(a_BlockX, a_BlockY, a_BlockZ, a_Noise, a_Seq, a_LogBlocks, a_OtherBlocks);
|
||||||
@ -264,6 +258,16 @@ void GetTreeImageByBiome(int a_BlockX, int a_BlockY, int a_BlockZ, cNoise & a_No
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case biMesa:
|
||||||
|
case biMesaPlateauF:
|
||||||
|
case biMesaPlateau:
|
||||||
|
case biMesaBryce:
|
||||||
|
case biMesaPlateauFM:
|
||||||
|
case biMesaPlateauM:
|
||||||
|
{
|
||||||
|
GetSmallAppleTreeImage(a_BlockX, a_BlockY, a_BlockZ, a_Noise, a_Seq, a_LogBlocks, a_OtherBlocks);
|
||||||
|
}
|
||||||
|
|
||||||
case biDesert:
|
case biDesert:
|
||||||
case biDesertHills:
|
case biDesertHills:
|
||||||
case biRiver:
|
case biRiver:
|
||||||
|
Loading…
Reference in New Issue
Block a user