No, that is not true. In Extruder.cpp you have
} else if(error > PID_CONTROL_RANGE) { // Phase 1: full heating until control range reached
output = act->pidMax;
act->startFullDecouple(time);
act->tempIState = act->tempIStateLimitMin;
if(act->heatManager == HTR_DEADTIME) {
act->tempIStateLimitMax = act->pidDriveMax;
act->tempIStateLimitMin = 0;
}
} else if(error < -PID_CONTROL_RANGE) // control range left upper side!
output = 0;
Searching for PID_CONTROL_RANGE I did not find any line changing the set value to limits. But you need to reupload the firmware.