diff --git a/code/modules/research/circuitprinter.dm b/code/modules/research/circuitprinter.dm index 6e8ec2c2f35..d919aee97ca 100644 --- a/code/modules/research/circuitprinter.dm +++ b/code/modules/research/circuitprinter.dm @@ -60,7 +60,7 @@ using metal and glass, it uses glass and reagents (usually sulfuric acis). var/T = 0 for(var/obj/item/stock_parts/manipulator/M in component_parts) T += M.rating - T = min(4, max(1, T)) + T = clamp(T, 1, 4) efficiency_coeff = 1 / (2 ** (T - 1)) /obj/machinery/r_n_d/circuit_imprinter/check_mat(datum/design/being_built, var/M)