fix biome choosing
This commit is contained in:
@@ -133,11 +133,12 @@ static inline const Biome* choose_biome(
|
|||||||
score += glm::abs((params[i] - biome.parameters[i].value) /
|
score += glm::abs((params[i] - biome.parameters[i].value) /
|
||||||
biome.parameters[i].weight);
|
biome.parameters[i].weight);
|
||||||
}
|
}
|
||||||
if (score < chosenScore) {
|
if (score < chosenScore || std::isinf(chosenScore)) {
|
||||||
chosenScore = score;
|
chosenScore = score;
|
||||||
chosenBiome = &biome;
|
chosenBiome = &biome;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
assert(chosenBiome != nullptr);
|
||||||
return chosenBiome;
|
return chosenBiome;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user