cap VIBR .tmp and explosion .temp

This commit is contained in:
jacob1
2025-02-04 10:10:23 -05:00
parent 51f5259de3
commit 03770dff78

View File

@@ -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 += parts[i].tmp*3;
parts[ID(r)].temp = std::clamp(parts[ID(r)].temp + parts[i].tmp * 3, MIN_TEMP, MAX_TEMP);
parts[i].tmp = 0;
}
}
@@ -210,8 +210,7 @@ int Element_VIBR_update(UPDATE_FUNC_ARGS)
}
}
}
if (parts[i].tmp < 0)
parts[i].tmp = 0; // only preventing because negative tmp doesn't save
parts[i].tmp = std::clamp(parts[i].tmp, 0, 1 << 15);
return 0;
}