Code Error

Was browsing through the code and saw this, from the comments it would seem that the second has_trait(“DOWN”) should be has_trait(“FAT”).

player.cpp
1047 // Down; lets heat out more easily if needed but not as Warm
// as full-blown fur. So less miserable in Summer.
if (has_trait(“DOWN”))
{
temp_conv[i] += (temp_cur[i] > BODYTEMP_NORM ? 300 : 800);
}
// Fat deposits don’t hold in much heat, but don’t shift for temp
if (has_trait(“DOWN”))
{
temp_conv[i] += (temp_cur[i] > BODYTEMP_NORM ? 200 : 200);
}

-Rog