use on_epsilon instead of 0.1, to match Q1

This commit is contained in:
Jonathan 2022-08-19 09:44:11 -04:00
parent 0c4888d5d1
commit 39475e3213
1 changed files with 1 additions and 1 deletions

View File

@ -1764,7 +1764,7 @@ inline void AddBrushBevels(mapentity_t &e, mapbrush_t &b)
size_t l = 0;
for (; l < w2.size(); l++) {
vec_t d = qv::dot(w2[l], plane.normal) - plane.dist;
if (d > 0.1) {
if (d > qbsp_options.epsilon.value()) {
break; // point in front
}
}