Commit 79c18d96 authored by MagoKimbra's avatar MagoKimbra

Fix Temperature.h

parent a6879c86
......@@ -130,7 +130,9 @@ FORCE_INLINE void setTargetHotend(const float &celsius, uint8_t extruder) {
#ifndef SINGLENOZZLE
target_temperature[extruder] = celsius;
#else
target_temperature[0] = celsius;
if (extruder == active_extruder) {
target_temperature[0] = celsius;
}
#endif
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment