mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-16 13:24:02 +02:00
cap VIBR .tmp and explosion .temp
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user