diff --git a/src/simulation/elements/VIBR.cpp b/src/simulation/elements/VIBR.cpp index 2c059928d..0120be1b4 100644 --- a/src/simulation/elements/VIBR.cpp +++ b/src/simulation/elements/VIBR.cpp @@ -107,7 +107,7 @@ int Element_VIBR_update(UPDATE_FUNC_ARGS) auto r = pmap[y+ry][x+rx]; if (TYP(r) && TYP(r)!=PT_VIBR && TYP(r)!=PT_BVBR && elements[TYP(r)].HeatConduct && (TYP(r)!=PT_HSWC||parts[ID(r)].life==10)) { - parts[ID(r)].temp = std::clamp(parts[ID(r)].temp + parts[i].tmp * 3, MIN_TEMP, MAX_TEMP); + parts[ID(r)].temp = restrict_flt(parts[ID(r)].temp + parts[i].tmp * 3, MIN_TEMP, MAX_TEMP); parts[i].tmp = 0; } }