MCPcopy Create free account
hub / github.com/cuberite/cuberite / IsBiomeNoDownfall

Function IsBiomeNoDownfall

src/BiomeDef.cpp:118–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116
117
118bool IsBiomeNoDownfall(EMCSBiome a_Biome)
119{
120 switch (a_Biome)
121 {
122 case biDesert:
123 case biDesertHills:
124 case biDesertM:
125 case biSavanna:
126 case biSavannaM:
127 case biSavannaPlateau:
128 case biSavannaPlateauM:
129 case biNether:
130 case biEnd:
131 {
132 return true;
133 }
134 default:
135 {
136 return false;
137 }
138 }
139}

Callers 2

TickMethod · 0.85
OnUpdateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected